projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
01310bb
)
SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer()
author
YueHaibing
<yuehaibing@huawei.com>
Thu, 8 Nov 2018 02:04:57 +0000
(
02:04
+0000)
committer
J. Bruce Fields
<bfields@redhat.com>
Thu, 8 Nov 2018 17:12:23 +0000
(12:12 -0500)
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>
net/sunrpc/xdr.c
patch
|
blob
|
history
diff --git
a/net/sunrpc/xdr.c
b/net/sunrpc/xdr.c
index 5cfb9e0a18dcb13bab7a8e07ff73b8199f906b26..f302c6eb8779063a71b9a590325a96b8026ab3e6 100644
(file)
--- 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;