Revision bdf200731145f07a6127cb16753e2e8fdc159cf4 authored by Arnd Bergmann on 01 October 2019, 15:53:29 UTC, committed by Jens Axboe on 01 October 2019, 15:53:29 UTC
All system calls use struct __kernel_timespec instead of the old struct
timespec, but this one was just added with the old-style ABI. Change it
now to enforce the use of __kernel_timespec, avoiding ABI confusion and
the need for compat handlers on 32-bit architectures.

Any user space caller will have to use __kernel_timespec now, but this
is unambiguous and works for any C library regardless of the time_t
definition. A nicer way to specify the timeout would have been a less
ambiguous 64-bit nanosecond value, but I suppose it's too late now to
change that as this would impact both 32-bit and 64-bit users.

Fixes: 5262f567987d ("io_uring: IORING_OP_TIMEOUT support")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent 8556011
History
File Mode Size
Kconfig -rw-r--r-- 516 bytes
Makefile -rw-r--r-- 378 bytes
ast.c -rw-r--r-- 8.1 KB
ast.h -rw-r--r-- 1.1 KB
config.c -rw-r--r-- 21.5 KB
config.h -rw-r--r-- 1.3 KB
debug_fs.c -rw-r--r-- 18.1 KB
dir.c -rw-r--r-- 7.3 KB
dir.h -rw-r--r-- 889 bytes
dlm_internal.h -rw-r--r-- 19.9 KB
lock.c -rw-r--r-- 157.4 KB
lock.h -rw-r--r-- 2.9 KB
lockspace.c -rw-r--r-- 20.4 KB
lockspace.h -rw-r--r-- 902 bytes
lowcomms.c -rw-r--r-- 43.6 KB
lowcomms.h -rw-r--r-- 973 bytes
lvb_table.h -rw-r--r-- 541 bytes
main.c -rw-r--r-- 1.8 KB
member.c -rw-r--r-- 16.1 KB
member.h -rw-r--r-- 1.3 KB
memory.c -rw-r--r-- 1.9 KB
memory.h -rw-r--r-- 904 bytes
midcomms.c -rw-r--r-- 3.6 KB
midcomms.h -rw-r--r-- 718 bytes
netlink.c -rw-r--r-- 2.8 KB
plock.c -rw-r--r-- 11.5 KB
rcom.c -rw-r--r-- 15.5 KB
rcom.h -rw-r--r-- 987 bytes
recover.c -rw-r--r-- 22.8 KB
recover.h -rw-r--r-- 1.3 KB
recoverd.c -rw-r--r-- 8.1 KB
recoverd.h -rw-r--r-- 781 bytes
requestqueue.c -rw-r--r-- 4.7 KB
requestqueue.h -rw-r--r-- 736 bytes
user.c -rw-r--r-- 24.5 KB
user.h -rw-r--r-- 440 bytes
util.c -rw-r--r-- 4.4 KB
util.h -rw-r--r-- 659 bytes

back to top