msg: Move struct msg_queue into ipc/msg.c
authorEric W. Biederman <ebiederm@xmission.com>
Fri, 23 Mar 2018 02:37:34 +0000 (21:37 -0500)
committerEric W. Biederman <ebiederm@xmission.com>
Sat, 24 Mar 2018 16:25:35 +0000 (11:25 -0500)
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>
include/linux/msg.h
ipc/msg.c

index 0a7eefeee0d11862d7e2932a1ee56750b562b24f..9a972a296b9539e5c83565c09d196e7e1c06f354 100644 (file)
@@ -3,7 +3,6 @@
 #define _LINUX_MSG_H
 
 #include <linux/list.h>
-#include <linux/time64.h>
 #include <uapi/linux/msg.h>
 
 /* one msg_msg structure for each message */
@@ -16,21 +15,4 @@ struct msg_msg {
        /* the actual message follows immediately */
 };
 
-/* one msq_queue structure for each present queue on the system */
-struct msg_queue {
-       struct kern_ipc_perm q_perm;
-       time64_t q_stime;               /* last msgsnd time */
-       time64_t q_rtime;               /* last msgrcv time */
-       time64_t q_ctime;               /* last change time */
-       unsigned long q_cbytes;         /* current number of bytes on queue */
-       unsigned long q_qnum;           /* number of messages in queue */
-       unsigned long q_qbytes;         /* max number of bytes on queue */
-       pid_t q_lspid;                  /* pid of last msgsnd */
-       pid_t q_lrpid;                  /* last receive pid */
-
-       struct list_head q_messages;
-       struct list_head q_receivers;
-       struct list_head q_senders;
-} __randomize_layout;
-
 #endif /* _LINUX_MSG_H */
index cdfab0825fce5168e1f524cbe507df0a28da7a82..af5a963306c4f9961b2cedb09a95e7b69c1d56eb 100644 (file)
--- a/ipc/msg.c
+++ b/ipc/msg.c
 #include <linux/uaccess.h>
 #include "util.h"
 
+/* one msq_queue structure for each present queue on the system */
+struct msg_queue {
+       struct kern_ipc_perm q_perm;
+       time64_t q_stime;               /* last msgsnd time */
+       time64_t q_rtime;               /* last msgrcv time */
+       time64_t q_ctime;               /* last change time */
+       unsigned long q_cbytes;         /* current number of bytes on queue */
+       unsigned long q_qnum;           /* number of messages in queue */
+       unsigned long q_qbytes;         /* max number of bytes on queue */
+       pid_t q_lspid;                  /* pid of last msgsnd */
+       pid_t q_lrpid;                  /* last receive pid */
+
+       struct list_head q_messages;
+       struct list_head q_receivers;
+       struct list_head q_senders;
+} __randomize_layout;
+
 /* one msg_receiver structure for each sleeping receiver */
 struct msg_receiver {
        struct list_head        r_list;