summaryrefslogtreecommitdiffstats
path: root/net/compat.c
diff options
context:
space:
mode:
authorDominik Brodowski <linux@dominikbrodowski.net>2018-03-13 14:24:23 -0400
committerDominik Brodowski <linux@dominikbrodowski.net>2018-04-02 14:15:06 -0400
commit4541e80560ca56d63348f40f2e34b044a5eb3dd7 (patch)
treef22f3698d50d5f058dc60f5a782131440e88ca12 /net/compat.c
parent211b634b7f1ebc3436d5e8a34810a8eaa1f269d9 (diff)
net: socket: add __sys_accept4() helper; remove in-kernel call to syscall
Using the net-internal helper __sys_accept4() allows us to avoid the internal calls to the sys_accept4() syscall. 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: David S. Miller <davem@davemloft.net> Cc: netdev@vger.kernel.org Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
Diffstat (limited to 'net/compat.c')
-rw-r--r--net/compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/compat.c b/net/compat.c
index fc82982d9b84..0ff9f7451b6f 100644
--- a/net/compat.c
+++ b/net/compat.c
@@ -823,7 +823,7 @@ COMPAT_SYSCALL_DEFINE2(socketcall, int, call, u32 __user *, args)
823 ret = sys_listen(a0, a1); 823 ret = sys_listen(a0, a1);
824 break; 824 break;
825 case SYS_ACCEPT: 825 case SYS_ACCEPT:
826 ret = sys_accept4(a0, compat_ptr(a1), compat_ptr(a[2]), 0); 826 ret = __sys_accept4(a0, compat_ptr(a1), compat_ptr(a[2]), 0);
827 break; 827 break;
828 case SYS_GETSOCKNAME: 828 case SYS_GETSOCKNAME:
829 ret = sys_getsockname(a0, compat_ptr(a1), compat_ptr(a[2])); 829 ret = sys_getsockname(a0, compat_ptr(a1), compat_ptr(a[2]));
@@ -873,7 +873,7 @@ COMPAT_SYSCALL_DEFINE2(socketcall, int, call, u32 __user *, args)
873 compat_ptr(a[4])); 873 compat_ptr(a[4]));
874 break; 874 break;
875 case SYS_ACCEPT4: 875 case SYS_ACCEPT4:
876 ret = sys_accept4(a0, compat_ptr(a1), compat_ptr(a[2]), a[3]); 876 ret = __sys_accept4(a0, compat_ptr(a1), compat_ptr(a[2]), a[3]);
877 break; 877 break;
878 default: 878 default:
879 ret = -EINVAL; 879 ret = -EINVAL;