Home
last modified time | relevance | path

Searched refs:resv (Results 1 – 4 of 4) sorted by relevance

/net/sunrpc/
Dsvc.c1071 svc_process_common(struct svc_rqst *rqstp, struct kvec *argv, struct kvec *resv) in svc_process_common() argument
1099 svc_putu32(resv, rqstp->rq_xid); in svc_process_common()
1104 svc_putnl(resv, 1); /* REPLY */ in svc_process_common()
1110 reply_statp = resv->iov_base + resv->iov_len; in svc_process_common()
1112 svc_putnl(resv, 0); /* ACCEPT */ in svc_process_common()
1169 statp = resv->iov_base +resv->iov_len; in svc_process_common()
1170 svc_putnl(resv, RPC_SUCCESS); in svc_process_common()
1208 !xdr(rqstp, resv->iov_base+resv->iov_len, rqstp->rq_resp)) { in svc_process_common()
1225 resv->iov_len = ((void*)statp) - resv->iov_base + 4; in svc_process_common()
1252 svc_putnl(resv, 1); /* REJECT */ in svc_process_common()
[all …]
Dsvcauth_unix.c729 struct kvec *resv = &rqstp->rq_res.head[0]; in svcauth_null_accept() local
758 svc_putnl(resv, RPC_AUTH_NULL); in svcauth_null_accept()
759 svc_putnl(resv, 0); in svcauth_null_accept()
793 struct kvec *resv = &rqstp->rq_res.head[0]; in svcauth_unix_accept() local
838 svc_putnl(resv, RPC_AUTH_NULL); in svcauth_unix_accept()
839 svc_putnl(resv, 0); in svcauth_unix_accept()
Dsvcsock.c1245 struct kvec *resv = &rqstp->rq_res.head[0]; in svc_tcp_prep_reply_hdr() local
1248 svc_putnl(resv, 0); in svc_tcp_prep_reply_hdr()
/net/sunrpc/auth_gss/
Dsvcauth_gss.c638 svc_safe_putnetobj(struct kvec *resv, struct xdr_netobj *o) in svc_safe_putnetobj() argument
642 if (resv->iov_len + 4 > PAGE_SIZE) in svc_safe_putnetobj()
644 svc_putnl(resv, o->len); in svc_safe_putnetobj()
645 p = resv->iov_base + resv->iov_len; in svc_safe_putnetobj()
646 resv->iov_len += round_up_to_quad(o->len); in svc_safe_putnetobj()
647 if (resv->iov_len > PAGE_SIZE) in svc_safe_putnetobj()
1077 gss_write_resv(struct kvec *resv, size_t size_limit, in gss_write_resv() argument
1081 if (resv->iov_len + 4 > size_limit) in gss_write_resv()
1083 svc_putnl(resv, RPC_SUCCESS); in gss_write_resv()
1084 if (svc_safe_putnetobj(resv, out_handle)) in gss_write_resv()
[all …]