aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/msg.h
diff options
context:
space:
mode:
authorEric W. Biederman <ebiederm@xmission.com>2018-03-22 22:37:34 -0400
committerEric W. Biederman <ebiederm@xmission.com>2018-03-24 12:25:35 -0400
commit34b56df922b10ac2876f268c522951785bf333fd (patch)
treebe3e5fe875e7f1e6a6889c4b32bf4958e064793f /include/linux/msg.h
parenta2e102cd3cdd8b7a14e08716510707b15802073f (diff)
msg: Move struct msg_queue into ipc/msg.c
All of the users are now in ipc/msg.c so make the definition local to that file to make code maintenance easier. AKA to prevent rebuilding the entire kernel when struct msg_queue changes. Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'include/linux/msg.h')
-rw-r--r--include/linux/msg.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/include/linux/msg.h b/include/linux/msg.h
index 0a7eefeee0d1..9a972a296b95 100644
--- a/include/linux/msg.h
+++ b/include/linux/msg.h
@@ -3,7 +3,6 @@
3#define _LINUX_MSG_H 3#define _LINUX_MSG_H
4 4
5#include <linux/list.h> 5#include <linux/list.h>
6#include <linux/time64.h>
7#include <uapi/linux/msg.h> 6#include <uapi/linux/msg.h>
8 7
9/* one msg_msg structure for each message */ 8/* one msg_msg structure for each message */
@@ -16,21 +15,4 @@ struct msg_msg {
16 /* the actual message follows immediately */ 15 /* the actual message follows immediately */
17}; 16};
18 17
19/* one msq_queue structure for each present queue on the system */
20struct msg_queue {
21 struct kern_ipc_perm q_perm;
22 time64_t q_stime; /* last msgsnd time */
23 time64_t q_rtime; /* last msgrcv time */
24 time64_t q_ctime; /* last change time */
25 unsigned long q_cbytes; /* current number of bytes on queue */
26 unsigned long q_qnum; /* number of messages in queue */
27 unsigned long q_qbytes; /* max number of bytes on queue */
28 pid_t q_lspid; /* pid of last msgsnd */
29 pid_t q_lrpid; /* last receive pid */
30
31 struct list_head q_messages;
32 struct list_head q_receivers;
33 struct list_head q_senders;
34} __randomize_layout;
35
36#endif /* _LINUX_MSG_H */ 18#endif /* _LINUX_MSG_H */