https://github.com/torvalds/linux
Raw File
Tip revision: b01543dfe67bb1d191998e90d20534dc354de059 authored by Linus Torvalds on 18 February 2012, 23:53:33 UTC
Linux 3.3-rc4
Tip revision: b01543d
hugetlb_inline.h
#ifndef _LINUX_HUGETLB_INLINE_H
#define _LINUX_HUGETLB_INLINE_H

#ifdef CONFIG_HUGETLB_PAGE

#include <linux/mm.h>

static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
{
	return !!(vma->vm_flags & VM_HUGETLB);
}

#else

static inline int is_vm_hugetlb_page(struct vm_area_struct *vma)
{
	return 0;
}

#endif

#endif
back to top