Commit d6abc719 authored by Ziyang Xuan's avatar Ziyang Xuan Committed by Anna Schumaker
Browse files

SUNRPC: use max_t() to simplify open code



Use max_t() to simplify open code which uses "if...else" to get maximum of
two values.

Generated by coccinelle script:
	scripts/coccinelle/misc/minmax.cocci

Signed-off-by: default avatarZiyang Xuan <william.xuanziyang@huawei.com>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent 724e2df9
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1822,10 +1822,7 @@ struct rpc_xprt *xprt_alloc(struct net *net, size_t size,
			goto out_free;
		list_add(&req->rq_list, &xprt->free);
	}
	if (max_alloc > num_prealloc)
		xprt->max_reqs = max_alloc;
	else
		xprt->max_reqs = num_prealloc;
	xprt->max_reqs = max_t(unsigned int, max_alloc, num_prealloc);
	xprt->min_reqs = num_prealloc;
	xprt->num_reqs = num_prealloc;