Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp4160136ybp; Sun, 13 Oct 2019 23:38:25 -0700 (PDT) X-Google-Smtp-Source: APXvYqxBZmE3pSwQBCQY5GaoSYnJwMKC/BHxRvxaRjPLNb/3SbhTOqqxnXpGfIs377cK5WqwKD1N X-Received: by 2002:a17:906:6a4a:: with SMTP id n10mr26942326ejs.23.1571035104912; Sun, 13 Oct 2019 23:38:24 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571035104; cv=none; d=google.com; s=arc-20160816; b=Ic9wUiNqpq7DMiuB6MSVoBKmk89gronvCLAq+9KOovJtTrtom9hbJaJ5b7akR4CXUW P9608ahaS6xzT+khLUabDCznBaZDwP3Q7W1/CcfaO0WctXWYd7fSEXz6SV8rijMJZ09P dfx+IAaLdmdXX9+InlhmXwGDCko7hd/nee6zbHsdcJE8CONwYu68k+P2O5a9FkgVP8Ic mzO7Q+WF5//3p7VsLEPz7+4aITxSPBErAm8b9Wy+rfoMOqipemiXtmFP4VVIwcP9FbDG j9CY+Jl+t23PZCJUR+en0/hAbRpJoa/5zBCGl7T133qs2scVBafCD0SllLneVyKObRn1 TEYQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=tYBXHLEj0HSOwEYRVkzcrYms5SBq/2oWcUOAPUqL+7I=; b=vVrlGR9QbS/N+4N5m9u+JzQ/Lex3M3w4uUNykhC5ms8zq9ylbcaRpaBrp/vo0P7J19 pUtIvlMaoODLwU4u/Tlsc5nPuQA3obMDIAqQ8acC7RGLtI9B4KPfGGL+TkI1MZf12q1+ nXGvi2k3MrRL/pPdYW9Eut5v2pkQDdbfZRcB5IqkUxBcAu7OkXDUUXRw9LLqcFJquSui 9Subu66MGMrTx7yFDvuxLaH9hxgiWP9LglofMBK6YZhb6wHfSQA+AQaSEE+iFyrM5/bm h83nf+8mrwOBiNFkEREyRb56qpOZcrmiTepT239Ym/UTBuw4SThzO8L78VC2tyC4YUUb iCYA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id z7si13036449edi.318.2019.10.13.23.38.01; Sun, 13 Oct 2019 23:38:24 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730047AbfJNGgd (ORCPT + 99 others); Mon, 14 Oct 2019 02:36:33 -0400 Received: from mx2.suse.de ([195.135.220.15]:51340 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726406AbfJNGgc (ORCPT ); Mon, 14 Oct 2019 02:36:32 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 36BE7B0BD; Mon, 14 Oct 2019 06:36:31 +0000 (UTC) Date: Sun, 13 Oct 2019 23:35:11 -0700 From: Davidlohr Bueso To: Manfred Spraul Cc: LKML , Waiman Long , 1vier1@web.de, Andrew Morton , Peter Zijlstra , Jonathan Corbet Subject: Re: [PATCH 2/6] ipc/mqueue.c: Remove duplicated code Message-ID: <20191014063511.dpbu3u6qoxr3ogn5@linux-p48b> References: <20191012054958.3624-1-manfred@colorfullife.com> <20191012054958.3624-3-manfred@colorfullife.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20191012054958.3624-3-manfred@colorfullife.com> User-Agent: NeoMutt/20180716 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 12 Oct 2019, Manfred Spraul wrote: >Patch entirely from Davidlohr: >pipelined_send() and pipelined_receive() are identical, so merge them. > Sorry, yeah feel free to add my: Signed-off-by: Davidlohr Bueso >Signed-off-by: Manfred Spraul >Cc: Davidlohr Bueso >--- > ipc/mqueue.c | 31 ++++++++++++++++++------------- > 1 file changed, 18 insertions(+), 13 deletions(-) > >diff --git a/ipc/mqueue.c b/ipc/mqueue.c >index 3d920ff15c80..be48c0ba92f7 100644 >--- a/ipc/mqueue.c >+++ b/ipc/mqueue.c >@@ -918,17 +918,12 @@ SYSCALL_DEFINE1(mq_unlink, const char __user *, u_name) > * The same algorithm is used for senders. > */ > >-/* pipelined_send() - send a message directly to the task waiting in >- * sys_mq_timedreceive() (without inserting message into a queue). >- */ >-static inline void pipelined_send(struct wake_q_head *wake_q, >+static inline void __pipelined_op(struct wake_q_head *wake_q, > struct mqueue_inode_info *info, >- struct msg_msg *message, >- struct ext_wait_queue *receiver) >+ struct ext_wait_queue *this) > { >- receiver->msg = message; >- list_del(&receiver->list); >- wake_q_add(wake_q, receiver->task); >+ list_del(&this->list); >+ wake_q_add(wake_q, this->task); > /* > * Rely on the implicit cmpxchg barrier from wake_q_add such > * that we can ensure that updating receiver->state is the last >@@ -937,7 +932,19 @@ static inline void pipelined_send(struct wake_q_head *wake_q, > * yet, at that point we can later have a use-after-free > * condition and bogus wakeup. > */ >- receiver->state = STATE_READY; >+ this->state = STATE_READY; >+} >+ >+/* pipelined_send() - send a message directly to the task waiting in >+ * sys_mq_timedreceive() (without inserting message into a queue). >+ */ >+static inline void pipelined_send(struct wake_q_head *wake_q, >+ struct mqueue_inode_info *info, >+ struct msg_msg *message, >+ struct ext_wait_queue *receiver) >+{ >+ receiver->msg = message; >+ __pipelined_op(wake_q, info, receiver); > } > > /* pipelined_receive() - if there is task waiting in sys_mq_timedsend() >@@ -955,9 +962,7 @@ static inline void pipelined_receive(struct wake_q_head *wake_q, > if (msg_insert(sender->msg, info)) > return; > >- list_del(&sender->list); >- wake_q_add(wake_q, sender->task); >- sender->state = STATE_READY; >+ __pipelined_op(wake_q, info, sender); > } > > static int do_mq_timedsend(mqd_t mqdes, const char __user *u_msg_ptr, >-- >2.21.0 >