Commit f149371e authored by Vasily Gorbik's avatar Vasily Gorbik Committed by Martin Schwidefsky

s390/sclp_async: replace callhome proc handler with generic one

Reuse generic proc_dointvec_minmax proc handler instead of
proc_handler_callhome.
Reviewed-by: default avatarHeiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 5bedf8aa
...@@ -64,42 +64,18 @@ static struct notifier_block call_home_panic_nb = { ...@@ -64,42 +64,18 @@ static struct notifier_block call_home_panic_nb = {
.priority = INT_MAX, .priority = INT_MAX,
}; };
static int proc_handler_callhome(struct ctl_table *ctl, int write, static int zero;
void __user *buffer, size_t *count, static int one = 1;
loff_t *ppos)
{
unsigned long val;
int len, rc;
char buf[3];
if (!*count || (*ppos && !write)) {
*count = 0;
return 0;
}
if (!write) {
len = snprintf(buf, sizeof(buf), "%d\n", callhome_enabled);
rc = copy_to_user(buffer, buf, sizeof(buf));
if (rc != 0)
return -EFAULT;
} else {
len = *count;
rc = kstrtoul_from_user(buffer, len, 0, &val);
if (rc)
return rc;
if (val != 0 && val != 1)
return -EINVAL;
callhome_enabled = val;
}
*count = len;
*ppos += len;
return 0;
}
static struct ctl_table callhome_table[] = { static struct ctl_table callhome_table[] = {
{ {
.procname = "callhome", .procname = "callhome",
.data = &callhome_enabled,
.maxlen = sizeof(int),
.mode = 0644, .mode = 0644,
.proc_handler = proc_handler_callhome, .proc_handler = proc_dointvec_minmax,
.extra1 = &zero,
.extra2 = &one,
}, },
{} {}
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment