aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2018-04-17 03:11:58 -0400
committerArnd Bergmann <arnd@arndb.de>2018-08-29 09:42:23 -0400
commit185cfaf7641e14af85635bb2750da302e32b04e3 (patch)
tree2c9be980c5bef6c442529df090e5f5170196b4ce /include/linux
parenta4f7a3004630f1a0fb130ab1824942a49ce33140 (diff)
y2038: Compile utimes()/futimesat() conditionally
There are four generations of utimes() syscalls: utime(), utimes(), futimesat() and utimensat(), each one being a superset of the previous one. For y2038 support, we have to add another one, which is the same as the existing utimensat() but always passes 64-bit times_t based timespec values. There are currently 10 architectures that only use utimensat(), two that use utimes(), futimesat() and utimensat() but not utime(), and 11 architectures that have all four, and those define __ARCH_WANT_SYS_UTIME in order to get a sys_utime implementation. Since all the new architectures only want utimensat(), moving all the legacy entry points into a common __ARCH_WANT_SYS_UTIME guard simplifies the logic. Only alpha and ia64 grow a tiny bit as they now also get an unused sys_utime(), but it didn't seem worth the extra complexity of adding yet another ifdef for those. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/syscalls.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 420ac881a610..95e795fb0593 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -955,8 +955,6 @@ asmlinkage long sys_access(const char __user *filename, int mode);
955asmlinkage long sys_rename(const char __user *oldname, 955asmlinkage long sys_rename(const char __user *oldname,
956 const char __user *newname); 956 const char __user *newname);
957asmlinkage long sys_symlink(const char __user *old, const char __user *new); 957asmlinkage long sys_symlink(const char __user *old, const char __user *new);
958asmlinkage long sys_utimes(char __user *filename,
959 struct timeval __user *utimes);
960#if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64) 958#if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64)
961asmlinkage long sys_stat64(const char __user *filename, 959asmlinkage long sys_stat64(const char __user *filename,
962 struct stat64 __user *statbuf); 960 struct stat64 __user *statbuf);
@@ -986,14 +984,18 @@ asmlinkage long sys_alarm(unsigned int seconds);
986asmlinkage long sys_getpgrp(void); 984asmlinkage long sys_getpgrp(void);
987asmlinkage long sys_pause(void); 985asmlinkage long sys_pause(void);
988asmlinkage long sys_time(time_t __user *tloc); 986asmlinkage long sys_time(time_t __user *tloc);
987#ifdef __ARCH_WANT_SYS_UTIME
989asmlinkage long sys_utime(char __user *filename, 988asmlinkage long sys_utime(char __user *filename,
990 struct utimbuf __user *times); 989 struct utimbuf __user *times);
990asmlinkage long sys_utimes(char __user *filename,
991 struct timeval __user *utimes);
992asmlinkage long sys_futimesat(int dfd, const char __user *filename,
993 struct timeval __user *utimes);
994#endif
991asmlinkage long sys_creat(const char __user *pathname, umode_t mode); 995asmlinkage long sys_creat(const char __user *pathname, umode_t mode);
992asmlinkage long sys_getdents(unsigned int fd, 996asmlinkage long sys_getdents(unsigned int fd,
993 struct linux_dirent __user *dirent, 997 struct linux_dirent __user *dirent,
994 unsigned int count); 998 unsigned int count);
995asmlinkage long sys_futimesat(int dfd, const char __user *filename,
996 struct timeval __user *utimes);
997asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp, 999asmlinkage long sys_select(int n, fd_set __user *inp, fd_set __user *outp,
998 fd_set __user *exp, struct timeval __user *tvp); 1000 fd_set __user *exp, struct timeval __user *tvp);
999asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds, 1001asmlinkage long sys_poll(struct pollfd __user *ufds, unsigned int nfds,