]> Git Repo - linux.git/commit
mm, x86: add support for PUD-sized transparent hugepages
authorMatthew Wilcox <[email protected]>
Fri, 24 Feb 2017 22:57:02 +0000 (14:57 -0800)
committerLinus Torvalds <[email protected]>
Sat, 25 Feb 2017 01:46:54 +0000 (17:46 -0800)
commita00cc7d9dd93d66a3fb83fc52aa57a4bec51c517
tree54d78e89c63e519cb9e00fdab9efbf3189ef2f5e
parenta2d581675d485eb7188f521f36efc114639a3096
mm, x86: add support for PUD-sized transparent hugepages

The current transparent hugepage code only supports PMDs.  This patch
adds support for transparent use of PUDs with DAX.  It does not include
support for anonymous pages.  x86 support code also added.

Most of this patch simply parallels the work that was done for huge
PMDs.  The only major difference is how the new ->pud_entry method in
mm_walk works.  The ->pmd_entry method replaces the ->pte_entry method,
whereas the ->pud_entry method works along with either ->pmd_entry or
->pte_entry.  The pagewalk code takes care of locking the PUD before
calling ->pud_walk, so handlers do not need to worry whether the PUD is
stable.

[[email protected]: fix SMP x86 32bit build for native_pud_clear()]
Link: http://lkml.kernel.org/r/148719066814.31111.3239231168815337012.stgit@djiang5-desk3.ch.intel.com
[[email protected]: native_pud_clear missing on i386 build]
Link: http://lkml.kernel.org/r/148640375195.69754.3315433724330910314.stgit@djiang5-desk3.ch.intel.com
Link: http://lkml.kernel.org/r/148545059381.17912.8602162635537598445.stgit@djiang5-desk3.ch.intel.com
Signed-off-by: Matthew Wilcox <[email protected]>
Signed-off-by: Dave Jiang <[email protected]>
Tested-by: Alexander Kapshuk <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Cc: Jan Kara <[email protected]>
Cc: Dan Williams <[email protected]>
Cc: Ross Zwisler <[email protected]>
Cc: Kirill A. Shutemov <[email protected]>
Cc: Nilesh Choudhury <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: "H. Peter Anvin" <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
21 files changed:
arch/Kconfig
arch/x86/Kconfig
arch/x86/include/asm/paravirt.h
arch/x86/include/asm/paravirt_types.h
arch/x86/include/asm/pgtable-2level.h
arch/x86/include/asm/pgtable-3level.h
arch/x86/include/asm/pgtable.h
arch/x86/include/asm/pgtable_64.h
arch/x86/kernel/paravirt.c
arch/x86/mm/pgtable.c
include/asm-generic/pgtable.h
include/asm-generic/tlb.h
include/linux/huge_mm.h
include/linux/mm.h
include/linux/mmu_notifier.h
include/linux/pfn_t.h
mm/gup.c
mm/huge_memory.c
mm/memory.c
mm/pagewalk.c
mm/pgtable-generic.c
This page took 0.068326 seconds and 4 git commands to generate.