Files
kernel/include/linux/hugetlb_inline.h
T

23 lines
329 B
C
Raw Normal View History

#ifndef _LINUX_HUGETLB_INLINE_H
2010-06-15 13:18:13 +09:00
#define _LINUX_HUGETLB_INLINE_H
2010-06-15 13:18:13 +09:00
#ifdef CONFIG_HUGETLB_PAGE
#include <linux/mm.h>
static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
{
2011-05-26 19:16:19 +09:00
return !!(vma->vm_flags & VM_HUGETLB);
}
#else
static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
{
return 0;
}
#endif
#endif