Release 4.13 arch/powerpc/include/asm/pgalloc.h
#ifndef _ASM_POWERPC_PGALLOC_H
#define _ASM_POWERPC_PGALLOC_H
#include <linux/mm.h>
#ifndef MODULE
static inline gfp_t pgtable_gfp_flags(struct mm_struct *mm, gfp_t gfp)
{
if (unlikely(mm == &init_mm))
return gfp;
return gfp | __GFP_ACCOUNT;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Balbir Singh | 33 | 100.00% | 1 | 100.00% |
Total | 33 | 100.00% | 1 | 100.00% |
#else /* !MODULE */
static inline gfp_t pgtable_gfp_flags(struct mm_struct *mm, gfp_t gfp)
{
return gfp | __GFP_ACCOUNT;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Balbir Singh | 20 | 100.00% | 1 | 100.00% |
Total | 20 | 100.00% | 1 | 100.00% |
#endif /* MODULE */
#ifdef CONFIG_PPC_BOOK3S
#include <asm/book3s/pgalloc.h>
#else
#include <asm/nohash/pgalloc.h>
#endif
#endif /* _ASM_POWERPC_PGALLOC_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Balbir Singh | 62 | 71.26% | 1 | 14.29% |
Paul Mackerras | 9 | 10.34% | 1 | 14.29% |
Anton Blanchard | 6 | 6.90% | 1 | 14.29% |
Benjamin Herrenschmidt | 4 | 4.60% | 2 | 28.57% |
Kumar Gala | 3 | 3.45% | 1 | 14.29% |
Aneesh Kumar K.V | 3 | 3.45% | 1 | 14.29% |
Total | 87 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.