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/msg.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'arch/powerpc/bits/msg.h') diff --git a/arch/powerpc/bits/msg.h b/arch/powerpc/bits/msg.h index 3db8576b..a6b9ad5b 100644 --- a/arch/powerpc/bits/msg.h +++ b/arch/powerpc/bits/msg.h @@ -1,12 +1,12 @@ struct msqid_ds { struct ipc_perm msg_perm; - time_t msg_stime; int __unused1; - time_t msg_rtime; + time_t msg_stime; int __unused2; - time_t msg_ctime; + time_t msg_rtime; int __unused3; + time_t msg_ctime; unsigned long msg_cbytes; msgqnum_t msg_qnum; msglen_t msg_qbytes; -- cgit v1.2.1