diff options
author | YueHaibing <yuehaibing@huawei.com> | 2018-11-08 02:04:57 +0000 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2018-11-08 12:12:23 -0500 |
commit | 025911a5f4e36955498ed50806ad1b02f0f76288 (patch) | |
tree | a7111fbd0c1870bd707816aaa54b22996ead658c /net | |
parent | 01310bb7c9c98752cc763b36532fab028e0f8f81 (diff) |
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@huawei.com>
Cc: stable@vger.kernel.org
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/xdr.c b/net/sunrpc/xdr.c index 5cfb9e0a18dc..f302c6eb8779 100644 --- a/net/sunrpc/xdr.c +++ b/net/sunrpc/xdr.c @@ -546,7 +546,7 @@ EXPORT_SYMBOL_GPL(xdr_commit_encode); 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; |