diff options
author | Peter Zijlstra <peterz@infradead.org> | 2018-09-03 15:07:36 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2018-09-07 15:19:25 +0100 |
commit | 196d9d8bb71deaa2d1c7170c88a2f1a318363047 (patch) | |
tree | 3ddc2d1922c9eab4591f1830989798be531a57d7 /mm/Makefile | |
parent | a6d60245d6d9b1caf66b0d94419988c4836980af (diff) | |
download | linux-196d9d8bb71deaa2d1c7170c88a2f1a318363047.tar.gz linux-196d9d8bb71deaa2d1c7170c88a2f1a318363047.tar.bz2 linux-196d9d8bb71deaa2d1c7170c88a2f1a318363047.zip |
mm/memory: Move mmu_gather and TLB invalidation code into its own file
In preparation for maintaining the mmu_gather code as its own entity,
move the implementation out of memory.c and into its own file.
Cc: "Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Michal Hocko <mhocko@suse.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'mm/Makefile')
-rw-r--r-- | mm/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/Makefile b/mm/Makefile index 8716bdabe1e6..7c48e0d3d8ab 100644 --- a/mm/Makefile +++ b/mm/Makefile @@ -23,9 +23,9 @@ KCOV_INSTRUMENT_vmstat.o := n mmu-y := nommu.o mmu-$(CONFIG_MMU) := gup.o highmem.o memory.o mincore.o \ - mlock.o mmap.o mprotect.o mremap.o msync.o \ - page_vma_mapped.o pagewalk.o pgtable-generic.o \ - rmap.o vmalloc.o + mlock.o mmap.o mmu_gather.o mprotect.o mremap.o \ + msync.o page_vma_mapped.o pagewalk.o \ + pgtable-generic.o rmap.o vmalloc.o ifdef CONFIG_CROSS_MEMORY_ATTACH |