aboutsummaryrefslogtreecommitdiffstats
path: root/mm/memcontrol.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/memcontrol.c')
-rw-r--r--mm/memcontrol.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/memcontrol.c b/mm/memcontrol.c
index 3878cfe399dc..44f9f9c89f0c 100644
--- a/mm/memcontrol.c
+++ b/mm/memcontrol.c
@@ -5024,9 +5024,9 @@ struct cgroup_subsys mem_cgroup_subsys = {
5024static int __init enable_swap_account(char *s) 5024static int __init enable_swap_account(char *s)
5025{ 5025{
5026 /* consider enabled if no parameter or 1 is given */ 5026 /* consider enabled if no parameter or 1 is given */
5027 if (!s || !strcmp(s, "1")) 5027 if (!(*s) || !strcmp(s, "=1"))
5028 really_do_swap_account = 1; 5028 really_do_swap_account = 1;
5029 else if (!strcmp(s, "0")) 5029 else if (!strcmp(s, "=0"))
5030 really_do_swap_account = 0; 5030 really_do_swap_account = 0;
5031 return 1; 5031 return 1;
5032} 5032}
@@ -5034,7 +5034,7 @@ __setup("swapaccount", enable_swap_account);
5034 5034
5035static int __init disable_swap_account(char *s) 5035static int __init disable_swap_account(char *s)
5036{ 5036{
5037 enable_swap_account("0"); 5037 enable_swap_account("=0");
5038 return 1; 5038 return 1;
5039} 5039}
5040__setup("noswapaccount", disable_swap_account); 5040__setup("noswapaccount", disable_swap_account);