From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,USER_AGENT_MUTT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A08A3C43381 for ; Mon, 11 Mar 2019 19:44:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6C4FA20643 for ; Mon, 11 Mar 2019 19:44:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727869AbfCKToh (ORCPT ); Mon, 11 Mar 2019 15:44:37 -0400 Received: from verein.lst.de ([213.95.11.211]:43193 "EHLO newverein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727008AbfCKTog (ORCPT ); Mon, 11 Mar 2019 15:44:36 -0400 Received: by newverein.lst.de (Postfix, from userid 2407) id B9D0C68C7B; Mon, 11 Mar 2019 20:44:31 +0100 (CET) Date: Mon, 11 Mar 2019 20:44:31 +0100 From: Christoph Hellwig To: Al Viro Cc: Linus Torvalds , Eric Dumazet , David Miller , Jason Baron , kgraul@linux.ibm.com, ktkhai@virtuozzo.com, kyeongdon.kim@lge.com, Linux List Kernel Mailing , Netdev , pabeni@redhat.com, syzkaller-bugs@googlegroups.com, xiyou.wangcong@gmail.com, Christoph Hellwig , zhengbin , bcrl@kvack.org, linux-fsdevel@vger.kernel.org, linux-aio@kvack.org, houtao1@huawei.com, yi.zhang@huawei.com Subject: Re: [PATCH 3/8] aio: store event at final iocb_put() Message-ID: <20190311194431.GD12602@lst.de> References: <20190310070606.GA10138@ZenIV.linux.org.uk> <20190310070822.11564-1-viro@ZenIV.linux.org.uk> <20190310070822.11564-3-viro@ZenIV.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190310070822.11564-3-viro@ZenIV.linux.org.uk> User-Agent: Mutt/1.5.17 (2007-11-01) Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Sun, Mar 10, 2019 at 07:08:17AM +0000, Al Viro wrote: > From: Al Viro > > Instead of having aio_complete() set ->ki_res.{res,res2}, do that > explicitly in its callers, drop the reference (as aio_complete() > used to do) and delay the rest until the final iocb_put(). > > Signed-off-by: Al Viro > --- > fs/aio.c | 45 ++++++++++++++++++++------------------------- > 1 file changed, 20 insertions(+), 25 deletions(-) > > diff --git a/fs/aio.c b/fs/aio.c > index 2249a7a1d6b3..b9c4c1894020 100644 > --- a/fs/aio.c > +++ b/fs/aio.c > @@ -1077,24 +1077,10 @@ static inline void iocb_destroy(struct aio_kiocb *iocb) > kmem_cache_free(kiocb_cachep, iocb); > } > > -static inline void iocb_put(struct aio_kiocb *iocb) > -{ > - if (refcount_dec_and_test(&iocb->ki_refcnt)) > - iocb_destroy(iocb); > -} Maybe iocb_put should just have been added in the place you move it to in patch 1?