]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
x86/mm/pat: Move the memtype related files to arch/x86/mm/pat/
authorIngo Molnar <mingo@kernel.org>
Tue, 10 Dec 2019 09:08:09 +0000 (10:08 +0100)
committerIngo Molnar <mingo@kernel.org>
Tue, 10 Dec 2019 09:12:55 +0000 (10:12 +0100)
- pat.c offers, dominantly, the memtype APIs - so rename it to memtype.c.

- pageattr.c is offering, primarily, the set_memory*() page attribute APIs,
  which is offered via the <asm/set_memory.h> header: name the .c file
  along the same pattern.

I.e. perform these renames, and move them all next to each other in arch/x86/mm/pat/:

    pat.c             => memtype.c
    pat_internal.h    => memtype.h
    pat_interval.c    => memtype_interval.c

    pageattr.c        => set_memory.c
    pageattr-test.c   => cpa-test.c

Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/mm/Makefile
arch/x86/mm/pat/Makefile [new file with mode: 0644]
arch/x86/mm/pat/cpa-test.c [moved from arch/x86/mm/pageattr-test.c with 100% similarity]
arch/x86/mm/pat/memtype.c [moved from arch/x86/mm/pat.c with 99% similarity]
arch/x86/mm/pat/memtype.h [moved from arch/x86/mm/pat_internal.h with 94% similarity]
arch/x86/mm/pat/memtype_interval.c [moved from arch/x86/mm/pat_interval.c with 99% similarity]
arch/x86/mm/pat/set_memory.c [moved from arch/x86/mm/pageattr.c with 99% similarity]

index 3b89c201ac267d8e1dba0af2acd4b39705c3f563..345848f270e3b445c3d31a0d8cbee9278ffadb82 100644 (file)
@@ -12,8 +12,10 @@ CFLAGS_REMOVE_mem_encrypt.o          = -pg
 CFLAGS_REMOVE_mem_encrypt_identity.o   = -pg
 endif
 
-obj-y  :=  init.o init_$(BITS).o fault.o ioremap.o extable.o pageattr.o mmap.o \
-           pat.o pgtable.o physaddr.o setup_nx.o tlb.o cpu_entry_area.o maccess.o
+obj-y                          :=  init.o init_$(BITS).o fault.o ioremap.o extable.o mmap.o \
+                                   pgtable.o physaddr.o setup_nx.o tlb.o cpu_entry_area.o maccess.o
+
+obj-y                          += pat/
 
 # Make sure __phys_addr has no stackprotector
 nostackp := $(call cc-option, -fno-stack-protector)
@@ -23,8 +25,6 @@ CFLAGS_mem_encrypt_identity.o := $(nostackp)
 
 CFLAGS_fault.o := -I $(srctree)/$(src)/../include/asm/trace
 
-obj-$(CONFIG_X86_PAT)          += pat_interval.o
-
 obj-$(CONFIG_X86_32)           += pgtable_32.o iomap_32.o
 
 obj-$(CONFIG_HUGETLB_PAGE)     += hugetlbpage.o
diff --git a/arch/x86/mm/pat/Makefile b/arch/x86/mm/pat/Makefile
new file mode 100644 (file)
index 0000000..ea464c9
--- /dev/null
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: GPL-2.0
+
+obj-y                          := set_memory.o memtype.o
+
+obj-$(CONFIG_X86_PAT)          += memtype_interval.o
similarity index 99%
rename from arch/x86/mm/pat.c
rename to arch/x86/mm/pat/memtype.c
index f1677fad17352e28cf4669750aeaacc57208e237..76532f080795edbe852929850cdd3c2f16c230b3 100644 (file)
@@ -55,8 +55,8 @@
 #include <asm/pat.h>
 #include <asm/io.h>
 
-#include "pat_internal.h"
-#include "mm_internal.h"
+#include "memtype.h"
+#include "../mm_internal.h"
 
 #undef pr_fmt
 #define pr_fmt(fmt) "" fmt
similarity index 94%
rename from arch/x86/mm/pat_internal.h
rename to arch/x86/mm/pat/memtype.h
index 23ce8cdac1592700b736ee497ea61ea03478b7cf..cacecdbceb55ecc0fdf28ceec58573f66cc391a9 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0 */
-#ifndef __PAT_INTERNAL_H_
-#define __PAT_INTERNAL_H_
+#ifndef __MEMTYPE_H_
+#define __MEMTYPE_H_
 
 extern int pat_debug_enable;
 
@@ -46,4 +46,4 @@ static inline int memtype_copy_nth_element(struct memtype *out, loff_t pos)
 { return 0; }
 #endif
 
-#endif /* __PAT_INTERNAL_H_ */
+#endif /* __MEMTYPE_H_ */
similarity index 99%
rename from arch/x86/mm/pat_interval.c
rename to arch/x86/mm/pat/memtype_interval.c
index 3c983de5f49222b3e1921410ce92455e5775c3e7..a7fbbdd88eebfdb0cfc4634799b96d914616b456 100644 (file)
@@ -18,7 +18,7 @@
 #include <asm/pgtable.h>
 #include <asm/pat.h>
 
-#include "pat_internal.h"
+#include "memtype.h"
 
 /*
  * The memtype tree keeps track of memory type for specific
similarity index 99%
rename from arch/x86/mm/pageattr.c
rename to arch/x86/mm/pat/set_memory.c
index 1b99ad05b117784415dfe88558431dbf093ffcdd..8fbefee6fc6d6e774ea8f73830bb2d8c55e0f700 100644 (file)
@@ -27,7 +27,7 @@
 #include <asm/pat.h>
 #include <asm/set_memory.h>
 
-#include "mm_internal.h"
+#include "../mm_internal.h"
 
 /*
  * The current flushing context - we pass it instead of 5 arguments:
@@ -2281,5 +2281,5 @@ int __init kernel_unmap_pages_in_pgd(pgd_t *pgd, unsigned long address,
  * be exposed to the rest of the kernel. Include these directly here.
  */
 #ifdef CONFIG_CPA_DEBUG
-#include "pageattr-test.c"
+#include "cpa-test.c"
 #endif