diff options
author | Miaohe Lin <linmiaohe@huawei.com> | 2023-06-03 13:25:58 +0200 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-06-10 01:25:55 +0200 |
commit | 12dd992accd96c09ec765a3bb4706a3ed24ae5b3 (patch) | |
tree | b9adb0fb58e52d2d5ac81ec004907091983f5bdd | |
parent | mm: fix failure to unmap pte on highmem systems (diff) | |
download | linux-12dd992accd96c09ec765a3bb4706a3ed24ae5b3.tar.xz linux-12dd992accd96c09ec765a3bb4706a3ed24ae5b3.zip |
mm: page_alloc: remove unneeded header files
Remove some unneeded header files. No functional change intended.
Link: https://lkml.kernel.org/r/20230603112558.213694-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
-rw-r--r-- | mm/page_alloc.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 091a6cb44265..6a18f2232e3e 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -26,7 +26,6 @@ #include <linux/kmsan.h> #include <linux/module.h> #include <linux/suspend.h> -#include <linux/pagevec.h> #include <linux/ratelimit.h> #include <linux/oom.h> #include <linux/topology.h> @@ -36,8 +35,6 @@ #include <linux/memory_hotplug.h> #include <linux/nodemask.h> #include <linux/vmstat.h> -#include <linux/sort.h> -#include <linux/pfn.h> #include <linux/fault-inject.h> #include <linux/compaction.h> #include <trace/events/kmem.h> @@ -52,7 +49,6 @@ #include <linux/memcontrol.h> #include <linux/ftrace.h> #include <linux/lockdep.h> -#include <linux/nmi.h> #include <linux/psi.h> #include <linux/khugepaged.h> #include <linux/delayacct.h> |