summaryrefslogtreecommitdiffstats
path: root/arch/microblaze/include/asm/msgbuf.h
diff options
context:
space:
mode:
authorMichal Simek <monstr@monstr.eu>2009-03-27 14:25:31 +0100
committerMichal Simek <monstr@monstr.eu>2009-03-27 14:25:31 +0100
commit9b8a45d92718e473d465d47f20e3eaca98ec63b5 (patch)
tree6eba54bc94329b7906ef907142e2cfe70844504a /arch/microblaze/include/asm/msgbuf.h
parent4b87d7a4f91d31f186b9d03434f800863aaf16d2 (diff)
downloadop-kernel-dev-9b8a45d92718e473d465d47f20e3eaca98ec63b5.zip
op-kernel-dev-9b8a45d92718e473d465d47f20e3eaca98ec63b5.tar.gz
microblaze_v8: includes SHM*, msgbuf
Reviewed-by: Ingo Molnar <mingo@elte.hu> Acked-by: John Linn <john.linn@xilinx.com> Acked-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> Acked-by: John Williams <john.williams@petalogix.com> Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/msgbuf.h')
-rw-r--r--arch/microblaze/include/asm/msgbuf.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/microblaze/include/asm/msgbuf.h b/arch/microblaze/include/asm/msgbuf.h
new file mode 100644
index 0000000..09dd970
--- /dev/null
+++ b/arch/microblaze/include/asm/msgbuf.h
@@ -0,0 +1,31 @@
+#ifndef _ASM_MICROBLAZE_MSGBUF_H
+#define _ASM_MICROBLAZE_MSGBUF_H
+
+/*
+ * The msqid64_ds structure for microblaze architecture.
+ * Note extra padding because this structure is passed back and forth
+ * between kernel and user space.
+ *
+ * Pad space is left for:
+ * - 64-bit time_t to solve y2038 problem
+ * - 2 miscellaneous 32-bit values
+ */
+
+struct msqid64_ds {
+ struct ipc64_perm msg_perm;
+ __kernel_time_t msg_stime; /* last msgsnd time */
+ unsigned long __unused1;
+ __kernel_time_t msg_rtime; /* last msgrcv time */
+ unsigned long __unused2;
+ __kernel_time_t msg_ctime; /* last change time */
+ unsigned long __unused3;
+ unsigned long msg_cbytes; /* current number of bytes on queue */
+ unsigned long msg_qnum; /* number of messages in queue */
+ unsigned long msg_qbytes; /* max number of bytes on queue */
+ __kernel_pid_t msg_lspid; /* pid of last msgsnd */
+ __kernel_pid_t msg_lrpid; /* last receive pid */
+ unsigned long __unused4;
+ unsigned long __unused5;
+};
+
+#endif /* _ASM_MICROBLAZE_MSGBUF_H */
OpenPOWER on IntegriCloud