aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipc/ipc_sysctl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ipc/ipc_sysctl.c b/ipc/ipc_sysctl.c
index c3f0326e98db..e8075b247497 100644
--- a/ipc/ipc_sysctl.c
+++ b/ipc/ipc_sysctl.c
@@ -123,7 +123,6 @@ static int proc_ipcauto_dointvec_minmax(struct ctl_table *table, int write,
123 void __user *buffer, size_t *lenp, loff_t *ppos) 123 void __user *buffer, size_t *lenp, loff_t *ppos)
124{ 124{
125 struct ctl_table ipc_table; 125 struct ctl_table ipc_table;
126 size_t lenp_bef = *lenp;
127 int oldval; 126 int oldval;
128 int rc; 127 int rc;
129 128
@@ -133,7 +132,7 @@ static int proc_ipcauto_dointvec_minmax(struct ctl_table *table, int write,
133 132
134 rc = proc_dointvec_minmax(&ipc_table, write, buffer, lenp, ppos); 133 rc = proc_dointvec_minmax(&ipc_table, write, buffer, lenp, ppos);
135 134
136 if (write && !rc && lenp_bef == *lenp) { 135 if (write && !rc) {
137 int newval = *((int *)(ipc_table.data)); 136 int newval = *((int *)(ipc_table.data));
138 /* 137 /*
139 * The file "auto_msgmni" has correctly been set. 138 * The file "auto_msgmni" has correctly been set.