Lines Matching refs:min_reqs
121 * Preallocate up to min_reqs structures and related buffers for use
138 int xprt_setup_backchannel(struct rpc_xprt *xprt, unsigned int min_reqs)
142 return xprt->ops->bc_setup(xprt, min_reqs);
146 int xprt_setup_bc(struct rpc_xprt *xprt, unsigned int min_reqs)
154 if (min_reqs > BC_MAX_SLOTS)
155 min_reqs = BC_MAX_SLOTS;
166 for (i = 0; i < min_reqs; i++) {
184 xprt->bc_alloc_count += min_reqs;
185 xprt->bc_alloc_max += min_reqs;
186 atomic_add(min_reqs, &xprt->bc_slot_count);