Skip to content

Commit

Permalink
SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
YueHaibing authored and J. Bruce Fields committed Nov 8, 2018
1 parent 01310bb commit 025911a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sunrpc/xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 025911a

Please sign in to comment.