[PATCH] proc: fix /proc/*/coredump_filter write return value

From: Alexey Dobriyan
Date: Fri Nov 06 2015 - 14:20:57 EST


From: Joshua Baergen <joshuabaergen@xxxxxxxxx>

https://bugzilla.kernel.org/show_bug.cgi?id=107321

commit 774636e19ed514cdf560006813c0473409616de8
("proc: convert to kstrto*()/kstrto*_from_user()")

made write to /proc/*/coredump_filter always return -ESRCH
(still new value was applied correctly).

Cc: stable@xxxxxxxxxxxxxxx
Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>
---

fs/proc/base.c | 1 +
1 file changed, 1 insertion(+)

--- a/fs/proc/base.c
+++ b/fs/proc/base.c
@@ -2503,6 +2503,7 @@ static ssize_t proc_coredump_filter_write(struct file *file,
}

mmput(mm);
+ ret = 0;
out_no_mm:
put_task_struct(task);
out_no_task:
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/