summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Arcangeli <aarcange@redhat.com>2011-01-13 18:47:09 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-13 20:32:45 -0500
commit4b7167b9ff9b7f3f528cbc4c7d02ebd275b9b10c (patch)
treead2c23c28b9dea009daf3719aefeb79103e2c152
parent94fcc585fb85ad7b059c70872489b50044d401f3 (diff)
thp: don't allow transparent hugepage support without PSE
Archs implementing Transparent Hugepage Support must implement a function called has_transparent_hugepage to be sure the virtual or physical CPU supports Transparent Hugepages. Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--arch/x86/include/asm/pgtable.h5
-rw-r--r--mm/huge_memory.c8
2 files changed, 13 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h
index c48ba055f693..18601c86fab1 100644
--- a/arch/x86/include/asm/pgtable.h
+++ b/arch/x86/include/asm/pgtable.h
@@ -160,6 +160,11 @@ static inline int pmd_trans_huge(pmd_t pmd)
160{ 160{
161 return pmd_val(pmd) & _PAGE_PSE; 161 return pmd_val(pmd) & _PAGE_PSE;
162} 162}
163
164static inline int has_transparent_hugepage(void)
165{
166 return cpu_has_pse;
167}
163#endif /* CONFIG_TRANSPARENT_HUGEPAGE */ 168#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
164 169
165static inline pte_t pte_set_flags(pte_t pte, pteval_t set) 170static inline pte_t pte_set_flags(pte_t pte, pteval_t set)
diff --git a/mm/huge_memory.c b/mm/huge_memory.c
index b6facc35e893..915809b16edf 100644
--- a/mm/huge_memory.c
+++ b/mm/huge_memory.c
@@ -487,7 +487,15 @@ static int __init hugepage_init(void)
487 int err; 487 int err;
488#ifdef CONFIG_SYSFS 488#ifdef CONFIG_SYSFS
489 static struct kobject *hugepage_kobj; 489 static struct kobject *hugepage_kobj;
490#endif
490 491
492 err = -EINVAL;
493 if (!has_transparent_hugepage()) {
494 transparent_hugepage_flags = 0;
495 goto out;
496 }
497
498#ifdef CONFIG_SYSFS
491 err = -ENOMEM; 499 err = -ENOMEM;
492 hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj); 500 hugepage_kobj = kobject_create_and_add("transparent_hugepage", mm_kobj);
493 if (unlikely(!hugepage_kobj)) { 501 if (unlikely(!hugepage_kobj)) {