diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2024-08-21 21:34:43 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2024-09-04 06:15:46 +0200 |
commit | 7a87225ae2c6c317c7b80cf599e5cf0eee699196 (patch) | |
tree | 0ba2331035265708efd715df4c3caea82b1f4ac7 /tools/mm | |
parent | mm: rename PG_mappedtodisk to PG_owner_2 (diff) | |
download | linux-7a87225ae2c6c317c7b80cf599e5cf0eee699196.tar.xz linux-7a87225ae2c6c317c7b80cf599e5cf0eee699196.zip |
x86: remove PG_uncached
Convert x86 to use PG_arch_2 instead of PG_uncached and remove
PG_uncached.
Link: https://lkml.kernel.org/r/20240821193445.2294269-11-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'tools/mm')
-rw-r--r-- | tools/mm/page-types.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/mm/page-types.c b/tools/mm/page-types.c index 8ca41c41105e..fa050d5a48cd 100644 --- a/tools/mm/page-types.c +++ b/tools/mm/page-types.c @@ -76,7 +76,7 @@ #define KPF_PRIVATE_2 36 #define KPF_OWNER_PRIVATE 37 #define KPF_ARCH 38 -#define KPF_UNCACHED 39 +#define KPF_UNCACHED 39 /* unused */ #define KPF_SOFTDIRTY 40 #define KPF_ARCH_2 41 @@ -134,7 +134,6 @@ static const char * const page_flag_names[] = { [KPF_PRIVATE_2] = "p:private_2", [KPF_OWNER_PRIVATE] = "O:owner_private", [KPF_ARCH] = "h:arch", - [KPF_UNCACHED] = "c:uncached", [KPF_SOFTDIRTY] = "f:softdirty", [KPF_ARCH_2] = "H:arch_2", |