diff options
author | Dan Streetman <ddstreet@ieee.org> | 2014-01-23 18:52:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-01-23 19:36:50 -0500 |
commit | 12ab028be0008640de712ca890dc1a9ae224934d (patch) | |
tree | 8e659a126d1cac262c14b430851f0f4f383fb1c6 | |
parent | 57ea8171d2bc245e22e760d2e4292da8e5a15175 (diff) |
mm/zswap.c: change params from hidden to ro
The "compressor" and "enabled" params are currently hidden, this changes
them to read-only, so userspace can tell if zswap is enabled or not and
see what compressor is in use.
Signed-off-by: Dan Streetman <ddstreet@ieee.org>
Cc: Vladimir Murzin <murzin.v@gmail.com>
Cc: Bob Liu <bob.liu@oracle.com>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Weijie Yang <weijie.yang@samsung.com>
Acked-by: Seth Jennings <sjennings@variantweb.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/zswap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/zswap.c b/mm/zswap.c index 5a63f78a5601..e55bab9dc41f 100644 --- a/mm/zswap.c +++ b/mm/zswap.c | |||
@@ -77,12 +77,12 @@ static u64 zswap_duplicate_entry; | |||
77 | **********************************/ | 77 | **********************************/ |
78 | /* Enable/disable zswap (disabled by default, fixed at boot for now) */ | 78 | /* Enable/disable zswap (disabled by default, fixed at boot for now) */ |
79 | static bool zswap_enabled __read_mostly; | 79 | static bool zswap_enabled __read_mostly; |
80 | module_param_named(enabled, zswap_enabled, bool, 0); | 80 | module_param_named(enabled, zswap_enabled, bool, 0444); |
81 | 81 | ||
82 | /* Compressor to be used by zswap (fixed at boot for now) */ | 82 | /* Compressor to be used by zswap (fixed at boot for now) */ |
83 | #define ZSWAP_COMPRESSOR_DEFAULT "lzo" | 83 | #define ZSWAP_COMPRESSOR_DEFAULT "lzo" |
84 | static char *zswap_compressor = ZSWAP_COMPRESSOR_DEFAULT; | 84 | static char *zswap_compressor = ZSWAP_COMPRESSOR_DEFAULT; |
85 | module_param_named(compressor, zswap_compressor, charp, 0); | 85 | module_param_named(compressor, zswap_compressor, charp, 0444); |
86 | 86 | ||
87 | /* The maximum percentage of memory that the compressed pool can occupy */ | 87 | /* The maximum percentage of memory that the compressed pool can occupy */ |
88 | static unsigned int zswap_max_pool_percent = 20; | 88 | static unsigned int zswap_max_pool_percent = 20; |