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

Commit 94f58df8 authored by Jesper Juhl's avatar Jesper Juhl Committed by Trond Myklebust
Browse files

SUNRPC: Simplify rpc_alloc_iostats by removing pointless local variable



Hi,

We can simplify net/sunrpc/stats.c::rpc_alloc_iostats() a bit by getting
rid of the unneeded local variable 'new'.

Please CC me on replies.

Signed-off-by: default avatarJesper Juhl <jj@chaosbits.net>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 5685b971
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -115,9 +115,7 @@ EXPORT_SYMBOL_GPL(svc_seq_show);
 */
struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt)
{
	struct rpc_iostats *new;
	new = kcalloc(clnt->cl_maxproc, sizeof(struct rpc_iostats), GFP_KERNEL);
	return new;
	return kcalloc(clnt->cl_maxproc, sizeof(struct rpc_iostats), GFP_KERNEL);
}
EXPORT_SYMBOL_GPL(rpc_alloc_iostats);