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=INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham 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 E2A1DC43387 for ; Thu, 20 Dec 2018 20:13:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B3EF2218E2 for ; Thu, 20 Dec 2018 20:13:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732942AbeLTUNJ (ORCPT ); Thu, 20 Dec 2018 15:13:09 -0500 Received: from fieldses.org ([173.255.197.46]:48948 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728835AbeLTUNI (ORCPT ); Thu, 20 Dec 2018 15:13:08 -0500 Received: by fieldses.org (Postfix, from userid 2815) id 348DC1C89; Thu, 20 Dec 2018 15:13:08 -0500 (EST) Date: Thu, 20 Dec 2018 15:13:08 -0500 From: Bruce Fields To: Chuck Lever Cc: Trond Myklebust , Anna Schumaker , Linux NFS Mailing List Subject: Re: [PATCH] sunrpc: convert unnecessary GFP_ATOMIC to GFP_NOFS Message-ID: <20181220201308.GA8466@fieldses.org> References: <20181220153511.GB6063@fieldses.org> <20181220154236.GC6063@fieldses.org> <09BE8CC3-B528-45BA-B10E-01D7F9FD264D@oracle.com> <20181220155219.GD6063@fieldses.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181220155219.GD6063@fieldses.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org On Thu, Dec 20, 2018 at 10:52:19AM -0500, Bruce Fields wrote: > On Thu, Dec 20, 2018 at 10:47:25AM -0500, Chuck Lever wrote: > > > > > > > On Dec 20, 2018, at 10:42 AM, J. Bruce Fields wrote: > > > > > > From: "J. Bruce Fields" > > > > > > It's OK to sleep here, we just don't want to recurse into the filesystem > > > as this writeout could be waiting on this. > > > > "as a writeout" > > Oops, thanks. (Trond or Anna, I'm assuming you can fix that up, but let me know if you'd rather I resent.) --b. > > > > Future work: the documentation for GFP_NOFS says "Please try to avoid > > > using this flag directly and instead use memalloc_nofs_{save,restore} to > > > mark the whole scope which cannot/shouldn't recurse into the FS layer > > > with a short explanation why. All allocation requests will inherit > > > GFP_NOFS implicitly." > > > > > > But I'm not sure where to do this. Should the workqueue be arranging > > > that for us in the case of workqueues created with WQ_MEM_RECLAIM? > > > > There seem to be plenty of uses of GFP_NOFS in NFS and sunrpc. > > That sounds like a big project. > > Yeah, just noting it for future reference. > > --b. > > > > Reported-by: Trond Myklebust > > > Signed-off-by: J. Bruce Fields > > > --- > > > net/sunrpc/rpcb_clnt.c | 4 ++-- > > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > > > Also, I've still got this one. (And still haven't looked into whether > > > it should be using a memalloc_nofs_{save,restore} elsewhere instead.) > > > > > > diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c > > > index 08b5fa4a2852..41a971ac1c63 100644 > > > --- a/net/sunrpc/rpcb_clnt.c > > > +++ b/net/sunrpc/rpcb_clnt.c > > > @@ -752,7 +752,7 @@ void rpcb_getport_async(struct rpc_task *task) > > > goto bailout_nofree; > > > } > > > > > > - map = kzalloc(sizeof(struct rpcbind_args), GFP_ATOMIC); > > > + map = kzalloc(sizeof(struct rpcbind_args), GFP_NOFS); > > > if (!map) { > > > status = -ENOMEM; > > > dprintk("RPC: %5u %s: no memory available\n", > > > @@ -770,7 +770,7 @@ void rpcb_getport_async(struct rpc_task *task) > > > case RPCBVERS_4: > > > case RPCBVERS_3: > > > map->r_netid = xprt->address_strings[RPC_DISPLAY_NETID]; > > > - map->r_addr = rpc_sockaddr2uaddr(sap, GFP_ATOMIC); > > > + map->r_addr = rpc_sockaddr2uaddr(sap, GFP_NOFS); > > > if (!map->r_addr) { > > > status = -ENOMEM; > > > dprintk("RPC: %5u %s: no memory available\n", > > > -- > > > 2.19.2 > > > > > > > -- > > Chuck Lever > > > >