[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1541642697-33860-1-git-send-email-yuehaibing@huawei.com>
Date: Thu, 8 Nov 2018 02:04:57 +0000
From: YueHaibing <yuehaibing@...wei.com>
To: Trond Myklebust <trond.myklebust@...merspace.com>,
Anna Schumaker <anna.schumaker@...app.com>,
"J. Bruce Fields" <bfields@...ldses.org>,
"David Miller" <davem@...emloft.net>,
Jeff Layton <jlayton@...nel.org>
CC: YueHaibing <yuehaibing@...wei.com>, <linux-nfs@...r.kernel.org>,
<netdev@...r.kernel.org>, <kernel-janitors@...r.kernel.org>
Subject: [PATCH net-next] SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer()
There is no need to have the '__be32 *p' variable static since new value
always be assigned before use it.
Signed-off-by: YueHaibing <yuehaibing@...wei.com>
---
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;
Powered by blists - more mailing lists