OSDN Git Service

fs: add ksys_write() helper; remove in-kernel calls to sys_write()
authorDominik Brodowski <linux@dominikbrodowski.net>
Sun, 11 Mar 2018 10:34:41 +0000 (11:34 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 2 Apr 2018 18:15:51 +0000 (20:15 +0200)
commite7a3e8b2edf544ec28f689385c3adc2903f46ec0
treef2fa667f8c2a6774aa466ab378a11e4c27cbd066
parenta16fe33ab5572e52ef4cb9719d6eb49623b2528a
fs: add ksys_write() helper; remove in-kernel calls to sys_write()

Using this helper allows us to avoid the in-kernel calls to the sys_write()
syscall. The ksys_ prefix denotes that this function is meant as a drop-in
replacement for the syscall. In particular, it uses the same calling
convention as sys_write().

In the near future, the do_mounts / initramfs callers of ksys_write()
should be converted to use filp_open() and vfs_write() instead.

This patch is part of a series which removes in-kernel calls to syscalls.
On this basis, the syscall entry path can be streamlined. For details, see
http://lkml.kernel.org/r/20180325162527.GA17492@light.dominikbrodowski.net

Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: linux-s390@vger.kernel.org
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
arch/s390/kernel/compat_linux.c
fs/read_write.c
include/linux/syscalls.h
init/do_mounts_rd.c
init/initramfs.c