29 lines
472 B
C
29 lines
472 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_HUGETLB_INLINE_H
|
|
#define _LINUX_HUGETLB_INLINE_H
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#ifdef CONFIG_HUGETLB_PAGE
|
|
|
|
static inline bool is_vm_hugetlb_flags(vm_flags_t vm_flags)
|
|
{
|
|
return !!(vm_flags & VM_HUGETLB);
|
|
}
|
|
|
|
#else
|
|
|
|
static inline bool is_vm_hugetlb_flags(vm_flags_t vm_flags)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
#endif
|
|
|
|
static inline bool is_vm_hugetlb_page(struct vm_area_struct *vma)
|
|
{
|
|
return is_vm_hugetlb_flags(vma->vm_flags);
|
|
}
|
|
|
|
#endif
|