Make sure the kernel_write that the init code uses to apply sysctl values from the kernel command line keeps working without set_fs().
Signed-off-by: Christoph Hellwig <[email protected]> --- This could be folded into "sysctl: Convert to iter interfaces". fs/proc/proc_sysctl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/proc/proc_sysctl.c b/fs/proc/proc_sysctl.c index a4a3122f8a584a..317899222d7fdf 100644 --- a/fs/proc/proc_sysctl.c +++ b/fs/proc/proc_sysctl.c @@ -853,6 +853,8 @@ static const struct file_operations proc_sys_file_operations = { .poll = proc_sys_poll, .read_iter = proc_sys_read, .write_iter = proc_sys_write, + .splice_read = generic_file_splice_read, + .splice_write = iter_file_splice_write, .llseek = default_llseek, }; -- 2.28.0

