diff options
author | Andrea Arcangeli <aarcange@redhat.com> | 2011-01-13 18:46:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 20:32:41 -0500 |
commit | 936a5fe6e6148c0b3ea0d792b903847d9b9931a1 (patch) | |
tree | f0326a5877a89251ff2cb727d5e832e911ed1d18 /include/linux/page-flags.h | |
parent | 47ad8475c000141eacb3ecda5e5ce4b43a9cd04d (diff) |
thp: kvm mmu transparent hugepage support
This should work for both hugetlbfs and transparent hugepages.
[akpm@linux-foundation.org: bring forward PageTransCompound() addition for bisectability]
Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Cc: Avi Kivity <avi@redhat.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r-- | include/linux/page-flags.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 4835cae71047..907f1605926b 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
@@ -409,6 +409,18 @@ static inline void ClearPageCompound(struct page *page) | |||
409 | 409 | ||
410 | #endif /* !PAGEFLAGS_EXTENDED */ | 410 | #endif /* !PAGEFLAGS_EXTENDED */ |
411 | 411 | ||
412 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE | ||
413 | static inline int PageTransCompound(struct page *page) | ||
414 | { | ||
415 | return PageCompound(page); | ||
416 | } | ||
417 | #else | ||
418 | static inline int PageTransCompound(struct page *page) | ||
419 | { | ||
420 | return 0; | ||
421 | } | ||
422 | #endif | ||
423 | |||
412 | #ifdef CONFIG_MMU | 424 | #ifdef CONFIG_MMU |
413 | #define __PG_MLOCKED (1 << PG_mlocked) | 425 | #define __PG_MLOCKED (1 << PG_mlocked) |
414 | #else | 426 | #else |