hugetlb_inline.h 335 B

1234567891011121314151617181920212223
  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 bool is_vm_hugetlb_page(struct vm_area_struct *vma)
  6. {
  7. return !!(vma->vm_flags & VM_HUGETLB);
  8. }
  9. #else
  10. static inline bool is_vm_hugetlb_page(struct vm_area_struct *vma)
  11. {
  12. return false;
  13. }
  14. #endif
  15. #endif