From 4a70dd5a6b4353d24b9e66cf0141a2df50b4333f Mon Sep 17 00:00:00 2001 From: Stanislav Kinsbursky Date: Thu, 29 Nov 2012 14:18:58 +1100 Subject: [PATCH] ipc: remove redundant MSG_COPY check Small cleanup patch. Signed-off-by: Stanislav Kinsbursky Cc: Serge Hallyn Cc: "Eric W. Biederman" Cc: Pavel Emelyanov Cc: Al Viro Cc: KOSAKI Motohiro Cc: Michael Kerrisk Signed-off-by: Andrew Morton --- ipc/msg.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ipc/msg.c b/ipc/msg.c index 889cc8db3957..91873dfb2e5f 100644 --- a/ipc/msg.c +++ b/ipc/msg.c @@ -786,11 +786,8 @@ long do_msgrcv(int msqid, void __user *buf, size_t bufsz, long msgtyp, return -EINVAL; if (msgflg & MSG_COPY) { #ifdef CONFIG_CHECKPOINT_RESTORE - - if (msgflg & MSG_COPY) { - copy_number = msgtyp; - msgtyp = 0; - } + copy_number = msgtyp; + msgtyp = 0; /* * Create dummy message to copy real message to. -- 2.39.5