ipc: add msgget syscall wrapper
authorDominik Brodowski <linux@dominikbrodowski.net>
Tue, 20 Mar 2018 19:06:04 +0000 (20:06 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 2 Apr 2018 18:15:23 +0000 (20:15 +0200)
commit3d65661a494a11266500c2532b4f163537c379db
treeeb645db5b5ddb58b9be70087d3176a02dff08568
parentd969c6fa7263c8fc1928f528bb68587872350b6c
ipc: add msgget syscall wrapper

Provide ksys_msgget() wrapper to avoid in-kernel calls to this 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_msgget().

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: Al Viro <viro@zeniv.linux.org.uk>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
ipc/msg.c
ipc/syscall.c
ipc/util.h