From ad66ae93d083ede90431bacf034f29ebd0815d73 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 11 Mar 2014 17:01:34 -0400 Subject: fix sysvipc structures on powerpc these have been wrong for a long time and were never detected or corrected. powerpc needs some gratuitous extra padding/reserved slots in ipc_perm, big-endian ordering for the padding of time_t slots that was intended by the kernel folks to allow a transition to 64-bit time_t, and some minor gratuitous reordering of struct members. --- arch/powerpc/bits/shm.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'arch/powerpc/bits/shm.h') diff --git a/arch/powerpc/bits/shm.h b/arch/powerpc/bits/shm.h index 547581f1..c698ef34 100644 --- a/arch/powerpc/bits/shm.h +++ b/arch/powerpc/bits/shm.h @@ -3,13 +3,14 @@ struct shmid_ds { struct ipc_perm shm_perm; - size_t shm_segsz; - time_t shm_atime; int __unused1; - time_t shm_dtime; + time_t shm_atime; int __unused2; - time_t shm_ctime; + time_t shm_dtime; int __unused3; + time_t shm_ctime; + int __unused4; + size_t shm_segsz; pid_t shm_cpid; pid_t shm_lpid; unsigned long shm_nattch; -- cgit v1.2.1