netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next] SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer()
@ 2018-11-08  2:04 YueHaibing
  2018-11-08  3:13 ` Trond Myklebust
  0 siblings, 1 reply; 3+ messages in thread
From: YueHaibing @ 2018-11-08  2:04 UTC (permalink / raw)
  To: Trond Myklebust, Anna Schumaker, J. Bruce Fields, David Miller,
	Jeff Layton
  Cc: YueHaibing, linux-nfs, netdev, kernel-janitors

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@huawei.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;

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-11-09  3:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-08  2:04 [PATCH net-next] SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() YueHaibing
2018-11-08  3:13 ` Trond Myklebust
2018-11-08 17:26   ` bfields

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).