Lines Matching refs:min_reqs
107 * Preallocate up to min_reqs structures and related buffers for use
124 int xprt_setup_backchannel(struct rpc_xprt *xprt, unsigned int min_reqs)
128 return xprt->ops->bc_setup(xprt, min_reqs);
132 int xprt_setup_bc(struct rpc_xprt *xprt, unsigned int min_reqs)
140 if (min_reqs > BC_MAX_SLOTS)
141 min_reqs = BC_MAX_SLOTS;
152 for (i = 0; i < min_reqs; i++) {
170 xprt->bc_alloc_count += min_reqs;
171 xprt->bc_alloc_max += min_reqs;
172 atomic_add(min_reqs, &xprt->bc_slot_count);