Lines Matching defs:space
301 /* This errno is exposed to user space. Provide a reasonable
490 * svc_reserve - change the space reserved for the reply to a request.
492 * @space: new max space to reserve
494 * Each request reserves some space on the output queue of the transport
496 * space to be the amount of space used already, plus @space.
499 void svc_reserve(struct svc_rqst *rqstp, int space)
503 space += rqstp->rq_res.head[0].iov_len;
505 if (xprt && space < rqstp->rq_reserved) {
506 atomic_sub((rqstp->rq_reserved - space), &xprt->xpt_reserved);
507 rqstp->rq_reserved = space;
529 * But first, check that enough space was reserved