mm: add ksys_fadvise64_64() helper; remove in-kernel call to sys_fadvise64_64()
authorDominik Brodowski <linux@dominikbrodowski.net>
Sun, 11 Mar 2018 10:34:45 +0000 (11:34 +0100)
committerDominik Brodowski <linux@dominikbrodowski.net>
Mon, 2 Apr 2018 18:16:10 +0000 (20:16 +0200)
Using the ksys_fadvise64_64() helper allows us to avoid the in-kernel
calls to the sys_fadvise64_64() 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 ksys_fadvise64_64().

Some compat stubs called sys_fadvise64(), which then just passed through
the arguments to sys_fadvise64_64(). Get rid of this indirection, and call
ksys_fadvise64_64() 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: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mm@kvack.org
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
12 files changed:
arch/arm/kernel/sys_arm.c
arch/mips/kernel/linux32.c
arch/parisc/kernel/sys_parisc.c
arch/powerpc/kernel/sys_ppc32.c
arch/powerpc/kernel/syscalls.c
arch/s390/kernel/compat_linux.c
arch/sh/kernel/sys_sh32.c
arch/sparc/kernel/sys_sparc32.c
arch/x86/ia32/sys_ia32.c
arch/xtensa/kernel/syscall.c
include/linux/syscalls.h
mm/fadvise.c

index 3151f5623d0e88ded30150fb47b8696366108111..bdf7514204ab426fbb3c9866edb0b008134d91bc 100644 (file)
@@ -35,5 +35,5 @@
 asmlinkage long sys_arm_fadvise64_64(int fd, int advice,
                                     loff_t offset, loff_t len)
 {
-       return sys_fadvise64_64(fd, offset, len, advice);
+       return ksys_fadvise64_64(fd, offset, len, advice);
 }
index 0779d474c8ad14387c3740058ce31532a3e482ba..1c5785e72db40becf8180657170abb5cc27027b1 100644 (file)
@@ -149,7 +149,7 @@ asmlinkage long sys32_fadvise64_64(int fd, int __pad,
        unsigned long a4, unsigned long a5,
        int flags)
 {
-       return sys_fadvise64_64(fd,
+       return ksys_fadvise64_64(fd,
                        merge_64(a2, a3), merge_64(a4, a5),
                        flags);
 }
index 588fab336ddd011e7a6476f0468d720262bc5c4b..f36ab1f09595db9b1c9b341efb9aca3f00f0c1a6 100644 (file)
@@ -352,7 +352,7 @@ asmlinkage long parisc_fadvise64_64(int fd,
                        unsigned int high_off, unsigned int low_off,
                        unsigned int high_len, unsigned int low_len, int advice)
 {
-       return sys_fadvise64_64(fd, (loff_t)high_off << 32 | low_off,
+       return ksys_fadvise64_64(fd, (loff_t)high_off << 32 | low_off,
                        (loff_t)high_len << 32 | low_len, advice);
 }
 
index 68f11e1065f87849ca0b72798849520f15a7061b..0b95fa13307f74a755b2cce36b0279d5edf3aa3d 100644 (file)
@@ -113,8 +113,8 @@ asmlinkage int compat_sys_ftruncate64(unsigned int fd, u32 reg4, unsigned long h
 long ppc32_fadvise64(int fd, u32 unused, u32 offset_high, u32 offset_low,
                     size_t len, int advice)
 {
-       return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low, len,
-                            advice);
+       return ksys_fadvise64_64(fd, (u64)offset_high << 32 | offset_low, len,
+                                advice);
 }
 
 asmlinkage long compat_sys_sync_file_range2(int fd, unsigned int flags,
index a877bf8269fe8a6d2a3c83a7a8639889962c8d90..ecb981eea74b78dfe413bbc517104b1c49784ef3 100644 (file)
@@ -119,8 +119,8 @@ long ppc64_personality(unsigned long personality)
 long ppc_fadvise64_64(int fd, int advice, u32 offset_high, u32 offset_low,
                      u32 len_high, u32 len_low)
 {
-       return sys_fadvise64(fd, (u64)offset_high << 32 | offset_low,
-                            (u64)len_high << 32 | len_low, advice);
+       return ksys_fadvise64_64(fd, (u64)offset_high << 32 | offset_low,
+                                (u64)len_high << 32 | len_low, advice);
 }
 
 long sys_switch_endian(void)
index 039858f9f1285cee2327cf5271f6da51c4081ca9..9bb897e443a64424e07fe91f820389a9f98da533 100644 (file)
@@ -483,7 +483,8 @@ COMPAT_SYSCALL_DEFINE5(s390_fadvise64, int, fd, u32, high, u32, low, compat_size
                advise = POSIX_FADV_DONTNEED;
        else if (advise == 5)
                advise = POSIX_FADV_NOREUSE;
-       return sys_fadvise64(fd, (unsigned long)high << 32 | low, len, advise);
+       return ksys_fadvise64_64(fd, (unsigned long)high << 32 | low, len,
+                                advise);
 }
 
 struct fadvise64_64_args {
@@ -503,7 +504,7 @@ COMPAT_SYSCALL_DEFINE1(s390_fadvise64_64, struct fadvise64_64_args __user *, arg
                a.advice = POSIX_FADV_DONTNEED;
        else if (a.advice == 5)
                a.advice = POSIX_FADV_NOREUSE;
-       return sys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
+       return ksys_fadvise64_64(a.fd, a.offset, a.len, a.advice);
 }
 
 COMPAT_SYSCALL_DEFINE6(s390_sync_file_range, int, fd, u32, offhigh, u32, offlow,
index c37ee3d0c8036696ff9358fbc6daa39625e48a90..9dca568509a5e57dff213fb6e60f59643529a4a0 100644 (file)
@@ -52,10 +52,10 @@ asmlinkage int sys_fadvise64_64_wrapper(int fd, u32 offset0, u32 offset1,
                                u32 len0, u32 len1, int advice)
 {
 #ifdef  __LITTLE_ENDIAN__
-       return sys_fadvise64_64(fd, (u64)offset1 << 32 | offset0,
-                               (u64)len1 << 32 | len0, advice);
+       return ksys_fadvise64_64(fd, (u64)offset1 << 32 | offset0,
+                                (u64)len1 << 32 | len0, advice);
 #else
-       return sys_fadvise64_64(fd, (u64)offset0 << 32 | offset1,
-                               (u64)len0 << 32 | len1, advice);
+       return ksys_fadvise64_64(fd, (u64)offset0 << 32 | offset1,
+                                (u64)len0 << 32 | len1, advice);
 #endif
 }
index 4ba62d676632a7819cfae889a79ee4f433f76cfb..4da66aed50b42cc282918dd855b095795177d326 100644 (file)
@@ -225,7 +225,7 @@ long compat_sys_fadvise64(int fd,
                          unsigned long offlo,
                          compat_size_t len, int advice)
 {
-       return sys_fadvise64_64(fd, (offhi << 32) | offlo, len, advice);
+       return ksys_fadvise64_64(fd, (offhi << 32) | offlo, len, advice);
 }
 
 long compat_sys_fadvise64_64(int fd,
@@ -233,10 +233,10 @@ long compat_sys_fadvise64_64(int fd,
                             unsigned long lenhi, unsigned long lenlo,
                             int advice)
 {
-       return sys_fadvise64_64(fd,
-                               (offhi << 32) | offlo,
-                               (lenhi << 32) | lenlo,
-                               advice);
+       return ksys_fadvise64_64(fd,
+                                (offhi << 32) | offlo,
+                                (lenhi << 32) | lenlo,
+                                advice);
 }
 
 long sys32_sync_file_range(unsigned int fd, unsigned long off_high, unsigned long off_low, unsigned long nb_high, unsigned long nb_low, unsigned int flags)
index df2acb13623f12968ccc1f33ac7a96db5264782b..401bd8ec9cf0fc66755f2a84550bd77735ac9096 100644 (file)
@@ -194,10 +194,10 @@ COMPAT_SYSCALL_DEFINE6(x86_fadvise64_64, int, fd, __u32, offset_low,
                       __u32, offset_high, __u32, len_low, __u32, len_high,
                       int, advice)
 {
-       return sys_fadvise64_64(fd,
-                              (((u64)offset_high)<<32) | offset_low,
-                              (((u64)len_high)<<32) | len_low,
-                               advice);
+       return ksys_fadvise64_64(fd,
+                                (((u64)offset_high)<<32) | offset_low,
+                                (((u64)len_high)<<32) | len_low,
+                                advice);
 }
 
 COMPAT_SYSCALL_DEFINE4(x86_readahead, int, fd, unsigned int, off_lo,
@@ -218,8 +218,8 @@ COMPAT_SYSCALL_DEFINE6(x86_sync_file_range, int, fd, unsigned int, off_low,
 COMPAT_SYSCALL_DEFINE5(x86_fadvise64, int, fd, unsigned int, offset_lo,
                       unsigned int, offset_hi, size_t, len, int, advice)
 {
-       return sys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
-                               len, advice);
+       return ksys_fadvise64_64(fd, ((u64)offset_hi << 32) | offset_lo,
+                                len, advice);
 }
 
 COMPAT_SYSCALL_DEFINE6(x86_fallocate, int, fd, int, mode,
index 74afbf02d07e8b3a7539235eeb2d5cfabe791230..8201748da05beb125d12786677e240ddb3041912 100644 (file)
@@ -55,7 +55,7 @@ asmlinkage long xtensa_shmat(int shmid, char __user *shmaddr, int shmflg)
 asmlinkage long xtensa_fadvise64_64(int fd, int advice,
                unsigned long long offset, unsigned long long len)
 {
-       return sys_fadvise64_64(fd, offset, len, advice);
+       return ksys_fadvise64_64(fd, offset, len, advice);
 }
 
 #ifdef CONFIG_MMU
index 613b8127834dc3c5a057302befd447e8aa0ef9e8..466d408deefd3534f000bf6e1351b44f7f637463 100644 (file)
@@ -970,6 +970,15 @@ ssize_t ksys_pread64(unsigned int fd, char __user *buf, size_t count,
 ssize_t ksys_pwrite64(unsigned int fd, const char __user *buf,
                      size_t count, loff_t pos);
 int ksys_fallocate(int fd, int mode, loff_t offset, loff_t len);
+#ifdef CONFIG_ADVISE_SYSCALLS
+int ksys_fadvise64_64(int fd, loff_t offset, loff_t len, int advice);
+#else
+static inline int ksys_fadvise64_64(int fd, loff_t offset, loff_t len,
+                                   int advice)
+{
+       return -EINVAL;
+}
+#endif
 
 /*
  * The following kernel syscall equivalents are just wrappers to fs-internal
index 767887f5f3bfd79b493a731dbc467d96545f8494..afa41491d324819271b7d2f7629b56da7f4006fa 100644 (file)
@@ -26,7 +26,8 @@
  * POSIX_FADV_WILLNEED could set PG_Referenced, and POSIX_FADV_NOREUSE could
  * deactivate the pages and clear PG_Referenced.
  */
-SYSCALL_DEFINE4(fadvise64_64, int, fd, loff_t, offset, loff_t, len, int, advice)
+
+int ksys_fadvise64_64(int fd, loff_t offset, loff_t len, int advice)
 {
        struct fd f = fdget(fd);
        struct inode *inode;
@@ -185,11 +186,16 @@ out:
        return ret;
 }
 
+SYSCALL_DEFINE4(fadvise64_64, int, fd, loff_t, offset, loff_t, len, int, advice)
+{
+       return ksys_fadvise64_64(fd, offset, len, advice);
+}
+
 #ifdef __ARCH_WANT_SYS_FADVISE64
 
 SYSCALL_DEFINE4(fadvise64, int, fd, loff_t, offset, size_t, len, int, advice)
 {
-       return sys_fadvise64_64(fd, offset, len, advice);
+       return ksys_fadvise64_64(fd, offset, len, advice);
 }
 
 #endif