diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-11-21 15:25:04 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-11-25 21:30:12 +0100 |
commit | af3784689e2b2741918e69f1ce5f0ecb7933b300 (patch) | |
tree | 444ea5286f9c1a802ca23d01469b1ca682c7953c /arch | |
parent | y2038: fix typo in powerpc vdso "LOPART" (diff) | |
download | linux-af3784689e2b2741918e69f1ce5f0ecb7933b300.tar.xz linux-af3784689e2b2741918e69f1ce5f0ecb7933b300.zip |
y2038: ipc: fix x32 ABI breakage
The correct type on x32 is 64-bit wide, same as for the other struct
members around it, so use __kernel_long_t in place of the original
__kernel_time_t here, corresponding to the rest of the structure.
Fixes: caf5e32d4ea7 ("y2038: ipc: remove __kernel_time_t reference from headers")
Reported-by: Ben Hutchings <ben.hutchings@codethink.co.uk>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/uapi/asm/sembuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/uapi/asm/sembuf.h b/arch/x86/include/uapi/asm/sembuf.h index 7c1b156695ba..93030e97269a 100644 --- a/arch/x86/include/uapi/asm/sembuf.h +++ b/arch/x86/include/uapi/asm/sembuf.h @@ -21,9 +21,9 @@ struct semid64_ds { unsigned long sem_ctime; /* last change time */ unsigned long sem_ctime_high; #else - long sem_otime; /* last semop time */ + __kernel_long_t sem_otime; /* last semop time */ __kernel_ulong_t __unused1; - long sem_ctime; /* last change time */ + __kernel_long_t sem_ctime; /* last change time */ __kernel_ulong_t __unused2; #endif __kernel_ulong_t sem_nsems; /* no. of semaphores in array */ |