diff options
author | Arnd Bergmann | 2019-04-23 17:43:50 +0200 |
---|---|---|
committer | Arnd Bergmann | 2019-11-15 14:38:27 +0100 |
commit | 3ca47e958a64b1116a2c35e65dcf467fc53d52de (patch) | |
tree | 9900980bcfdd65e8a8b7518d450b04908b325df4 /fs/aio.c | |
parent | a99d8080aaf358d5d23581244e5da23b35e340b9 (diff) |
y2038: remove CONFIG_64BIT_TIME
The CONFIG_64BIT_TIME option is defined on all architectures, and can
be removed for simplicity now.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'fs/aio.c')
-rw-r--r-- | fs/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2056,7 +2056,7 @@ static long do_io_getevents(aio_context_t ctx_id, * specifies an infinite timeout. Note that the timeout pointed to by * timeout is relative. Will fail with -ENOSYS if not implemented. */ -#if !defined(CONFIG_64BIT_TIME) || defined(CONFIG_64BIT) +#ifdef CONFIG_64BIT SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id, long, min_nr, |