From: Joshua Baergen <[email protected]>
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: [email protected]
Signed-off-by: Alexey Dobriyan <[email protected]>
---
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 [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/