]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - ipc/msg.c
Merge tag 'usb-4.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
[karo-tx-linux.git] / ipc / msg.c
index e12307d0c920ccd9e50168ed890c5b6057206a52..32e9bd837cde0b95d4f963aede5ccc86935b0a39 100644 (file)
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -235,7 +235,7 @@ static void freeque(struct ipc_namespace *ns, struct kern_ipc_perm *ipcp)
 {
        struct msg_msg *msg, *t;
        struct msg_queue *msq = container_of(ipcp, struct msg_queue, q_perm);
-       WAKE_Q(wake_q);
+       DEFINE_WAKE_Q(wake_q);
 
        expunge_all(msq, -EIDRM, &wake_q);
        ss_wakeup(msq, &wake_q, true);
@@ -397,7 +397,7 @@ static int msgctl_down(struct ipc_namespace *ns, int msqid, int cmd,
                goto out_up;
        case IPC_SET:
        {
-               WAKE_Q(wake_q);
+               DEFINE_WAKE_Q(wake_q);
 
                if (msqid64.msg_qbytes > ns->msg_ctlmnb &&
                    !capable(CAP_SYS_RESOURCE)) {
@@ -634,7 +634,7 @@ long do_msgsnd(int msqid, long mtype, void __user *mtext,
        struct msg_msg *msg;
        int err;
        struct ipc_namespace *ns;
-       WAKE_Q(wake_q);
+       DEFINE_WAKE_Q(wake_q);
 
        ns = current->nsproxy->ipc_ns;
 
@@ -850,7 +850,7 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, int msgfl
        struct msg_queue *msq;
        struct ipc_namespace *ns;
        struct msg_msg *msg, *copy = NULL;
-       WAKE_Q(wake_q);
+       DEFINE_WAKE_Q(wake_q);
 
        ns = current->nsproxy->ipc_ns;