Commit a4f7a300 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

y2038: Change sys_utimensat() to use __kernel_timespec



When 32-bit architectures get changed to support 64-bit time_t,
utimensat() needs to use the new __kernel_timespec structure as its
argument.

The older utime(), utimes() and futimesat() system calls don't need a
corresponding change as they are no longer used on C libraries that have
64-bit time support.

As we do for the other syscalls that have timespec arguments, we reuse
the 'compat' syscall entry points to implement the traditional four
interfaces, and only leave the new utimensat() as a native handler,
so that the same code gets used on both 32-bit and 64-bit kernels
on each syscall.

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent c5ba7e6c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -166,7 +166,7 @@ out:
}

SYSCALL_DEFINE4(utimensat, int, dfd, const char __user *, filename,
		struct timespec __user *, utimes, int, flags)
		struct __kernel_timespec __user *, utimes, int, flags)
{
	struct timespec64 tstimes[2];

+2 −1
Original line number Diff line number Diff line
@@ -513,7 +513,8 @@ asmlinkage long sys_timerfd_gettime(int ufd, struct __kernel_itimerspec __user *

/* fs/utimes.c */
asmlinkage long sys_utimensat(int dfd, const char __user *filename,
				struct timespec __user *utimes, int flags);
				struct __kernel_timespec __user *utimes,
				int flags);

/* kernel/acct.c */
asmlinkage long sys_acct(const char __user *name);