summaryrefslogtreecommitdiff
path: root/include/linux/mm.h
diff options
context:
space:
mode:
authorKairui Song <kasong@tencent.com>2022-10-23 19:25:33 +0300
committerAndrew Morton <akpm@linux-foundation.org>2022-11-09 04:37:22 +0300
commitea0ffd0c08d0fef1f6e93eb07badbeeabf6b43d6 (patch)
tree7c51a3389015d022f9a2b98a2157e2de31216605 /include/linux/mm.h
parent5033091de814ab4b5623faed2755f3064e19e2d2 (diff)
downloadlinux-ea0ffd0c08d0fef1f6e93eb07badbeeabf6b43d6.tar.xz
swap: add a limit for readahead page-cluster value
Currenty there is no upper limit for /proc/sys/vm/page-cluster, and it's a bit shift value, so it could result in overflow of the 32-bit integer. Add a reasonable upper limit for it, read-in at most 2**31 pages, which is a large enough value for readahead. Link: https://lkml.kernel.org/r/20221023162533.81561-1-ryncsn@gmail.com Signed-off-by: Kairui Song <kasong@tencent.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/mm.h')
-rw-r--r--include/linux/mm.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 429ff89bfe06..255931ebf2dc 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -74,6 +74,7 @@ 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;