[GIT PULL] x86/mm changes for v5.5

From: Ingo Molnar
Date: Mon Nov 25 2019 - 09:21:36 EST


Linus,

Please pull the latest x86-mm-for-linus git tree from:

git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-mm-for-linus

# HEAD: 7f264dab5b60343358e788d4c939c166c22ea4a2 x86/mm/pat: Rename pat_rbtree.c to pat_interval.c

The main changes in this cycle were:

- A PAT series from Davidlohr Bueso, which simplifies the memtype rbtree
by using the interval tree helpers. (There's more cleanups in this
area queued up, but they didn't make the merge window.)

- Also flip over CONFIG_X86_5LEVEL to default-y. This might draw in a
few more testers, as all the major distros are going to have 5-level
paging enabled by default in their next iterations.

- Misc cleanups.


Thanks,

Ingo

------------------>
Davidlohr Bueso (4):
x86/mm/pat: Convert the PAT tree to a generic interval tree
x86/mm/pat: Do not pass 'rb_root' down the memtype tree helper functions
x86/mm/pat: Drop the rbt_ prefix from external memtype calls
x86/mm/pat: Rename pat_rbtree.c to pat_interval.c

Ingo Molnar (1):
x86/mm: Clean up the pmd_read_atomic() comments

Kirill A. Shutemov (1):
x86/mm: Enable 5-level paging support by default

Sylvain 'ythier' Hitier (1):
x86/cpu: Clean up intel_tlb_table[]

Wei Yang (1):
x86/mm: Fix function name typo in pmd_read_atomic() comment


arch/x86/Kconfig | 1 +
arch/x86/include/asm/pgtable-3level.h | 46 +++---
arch/x86/kernel/cpu/intel.c | 8 +-
arch/x86/mm/Makefile | 2 +-
arch/x86/mm/pat.c | 8 +-
arch/x86/mm/pat_internal.h | 20 +--
arch/x86/mm/pat_interval.c | 185 +++++++++++++++++++++++
arch/x86/mm/pat_rbtree.c | 268 ----------------------------------
8 files changed, 229 insertions(+), 309 deletions(-)
create mode 100644 arch/x86/mm/pat_interval.c
delete mode 100644 arch/x86/mm/pat_rbtree.c