Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26eff850 authored by YueHaibing's avatar YueHaibing Committed by Greg Kroah-Hartman
Browse files

SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer()



[ Upstream commit 025911a5f4e36955498ed50806ad1b02f0f76288 ]

There is no need to have the '__be32 *p' variable static since new value
always be assigned before use it.

Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Cc: stable@vger.kernel.org
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent c887029c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -512,7 +512,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;