]> git.baikalelectronics.ru Git - kernel.git/commit
fs: add ksys_mount() helper; remove in-kernel calls to sys_mount()
authorDominik Brodowski <linux@dominikbrodowski.net>
Sun, 11 Mar 2018 10:34:39 +0000 (11:34 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 2 Apr 2018 18:15:48 +0000 (20:15 +0200)
commitf2ebf4aeb78c172d3b9b5c6c0ed73552b0126b5c
treee62c8c554db9e30e7676d847fa75d189231895de
parent6242bb50121d22c7be6c55cf5775381952ad4f57
fs: add ksys_mount() helper; remove in-kernel calls to sys_mount()

Using this helper allows us to avoid the in-kernel calls to the sys_mount()
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_mount().

In the near future, all callers of ksys_mount() should be converted to call
do_mount() directly.

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>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
drivers/base/devtmpfs.c
fs/namespace.c
include/linux/syscalls.h
init/do_mounts.c
init/do_mounts_initrd.c