Commit a44937fe authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
parent 8d48b2e0
...@@ -1366,10 +1366,8 @@ static ssize_t proc_fail_nth_read(struct file *file, char __user *buf, ...@@ -1366,10 +1366,8 @@ static ssize_t proc_fail_nth_read(struct file *file, char __user *buf,
if (!task) if (!task)
return -ESRCH; return -ESRCH;
len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth); len = snprintf(numbuf, sizeof(numbuf), "%u\n", task->fail_nth);
len = simple_read_from_buffer(buf, count, ppos, numbuf, len);
put_task_struct(task); put_task_struct(task);
return simple_read_from_buffer(buf, count, ppos, numbuf, len);
return len;
} }
static const struct file_operations proc_fail_nth_operations = { static const struct file_operations proc_fail_nth_operations = {
......
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