Release 4.12 include/linux/hugetlb_inline.h
#ifndef _LINUX_HUGETLB_INLINE_H
#define _LINUX_HUGETLB_INLINE_H
#ifdef CONFIG_HUGETLB_PAGE
#include <linux/mm.h>
static inline bool is_vm_hugetlb_page(struct vm_area_struct *vma)
{
return !!(vma->vm_flags & VM_HUGETLB);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Naoya Horiguchi | 18 | 78.26% | 1 | 33.33% |
Motohiro Kosaki | 4 | 17.39% | 1 | 33.33% |
Yaowei Bai | 1 | 4.35% | 1 | 33.33% |
Total | 23 | 100.00% | 3 | 100.00% |
#else
static inline bool is_vm_hugetlb_page(struct vm_area_struct *vma)
{
return false;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Naoya Horiguchi | 13 | 86.67% | 1 | 50.00% |
Yaowei Bai | 2 | 13.33% | 1 | 50.00% |
Total | 15 | 100.00% | 2 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Naoya Horiguchi | 49 | 87.50% | 2 | 50.00% |
Motohiro Kosaki | 4 | 7.14% | 1 | 25.00% |
Yaowei Bai | 3 | 5.36% | 1 | 25.00% |
Total | 56 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.