hugetlb_inline.h 329 B

12345678910111213141516171819202122
  1. #ifndef _LINUX_HUGETLB_INLINE_H
  2. #define _LINUX_HUGETLB_INLINE_H
  3. #ifdef CONFIG_HUGETLB_PAGE
  4. #include <linux/mm.h>
  5. static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
  6. {
  7. return !!(vma->vm_flags & VM_HUGETLB);
  8. }
  9. #else
  10. static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
  11. {
  12. return 0;
  13. }
  14. #endif
  15. #endif