diff options
author | 2025-01-11 15:07:38 +0800 | |
---|---|---|
committer | 2025-02-07 16:53:04 +0100 | |
commit | 7e05627ee17bf30422705f94627cf9da70683887 (patch) | |
tree | 3e6ec6e05982de9afb488e0aa400d7383dfe5c09 /include/linux/mm.h | |
parent | mm: filemap: move sysctl to mm/filemap.c (diff) | |
download | wireguard-linux-7e05627ee17bf30422705f94627cf9da70683887.tar.xz wireguard-linux-7e05627ee17bf30422705f94627cf9da70683887.zip |
mm: swap: move sysctl to mm/swap.c
The page-cluster belongs to mm/swap.c, move it to mm/swap.c .
Removes the redundant external variable declaration and unneeded
include(linux/swap.h).
Signed-off-by: Kaixiong Yu <yukaixiong@huawei.com>
Reviewed-by: Kees Cook <kees@kernel.org>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Joel Granados <joel.granados@kernel.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r-- | include/linux/mm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h index 70cca450a68a..23cfaa40fef3 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -76,8 +76,6 @@ static inline void totalram_pages_add(long count) } extern void * high_memory; -extern int page_cluster; -extern const int page_cluster_max; #ifdef CONFIG_SYSCTL extern int sysctl_legacy_va_layout; |