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=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 153A7ECDE47 for ; Thu, 8 Nov 2018 17:26:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DAF3C20818 for ; Thu, 8 Nov 2018 17:26:34 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DAF3C20818 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=fieldses.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-nfs-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726811AbeKIDDD (ORCPT ); Thu, 8 Nov 2018 22:03:03 -0500 Received: from fieldses.org ([173.255.197.46]:38724 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726583AbeKIDDD (ORCPT ); Thu, 8 Nov 2018 22:03:03 -0500 Received: by fieldses.org (Postfix, from userid 2815) id 7BFD8207B; Thu, 8 Nov 2018 12:26:33 -0500 (EST) Date: Thu, 8 Nov 2018 12:26:33 -0500 From: "bfields@fieldses.org" To: Trond Myklebust Cc: "yuehaibing@huawei.com" , "anna.schumaker@netapp.com" , "davem@davemloft.net" , "jlayton@kernel.org" , "netdev@vger.kernel.org" , "linux-nfs@vger.kernel.org" , "kernel-janitors@vger.kernel.org" Subject: Re: [PATCH net-next] SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() Message-ID: <20181108172633.GD4947@fieldses.org> References: <1541642697-33860-1-git-send-email-yuehaibing@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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, Nov 08, 2018 at 03:13:25AM +0000, Trond Myklebust wrote: > On Thu, 2018-11-08 at 02:04 +0000, YueHaibing wrote: > > There is no need to have the '__be32 *p' variable static since new > > value > > always be assigned before use it. Applying for 4.20 and stable, thanks! > > > > Signed-off-by: YueHaibing > > --- > > net/sunrpc/xdr.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c > > index 2bbb8d3..d80b156 100644 > > --- a/net/sunrpc/xdr.c > > +++ b/net/sunrpc/xdr.c > > @@ -546,7 +546,7 @@ void xdr_commit_encode(struct xdr_stream *xdr) > > static __be32 *xdr_get_next_encode_buffer(struct xdr_stream *xdr, > > size_t nbytes) > > { > > - static __be32 *p; > > + __be32 *p; > > int space_left; > > int frag1bytes, frag2bytes; > > > > Ouch, that's a really nasty bug that could definitely cause corruption > if you have 2 threads simultaneously calling this function! This really > deserves to be a stable patch. Agreed. Looks like I introduced that in 3.16, over 5 years ago, so I'm a little surprised not to have seen a bug report that this would explain. Maybe it's just that the critical section is only a few lines of arithemtic at the end of the function. Also it only gets called when an xdr reply other than a read reaches the end of a page. So you'd need a lot of concurrent READDIRs of large directories or something. Still, I'd think it would be possible..... > Thank you, YueHaibing! > > Bruce, do you want to shepherd this one in? Yes, I've got 3 bugfixes queued up now, I should send them along later today or tomorrow. --b.