Home
last modified time | relevance | path

Searched full:mrep (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/rpc/
H A Dsvc_vc.c983 struct mbuf *mrep; in svc_vc_reply() local
993 mrep = m_gethdr(M_WAITOK, MT_DATA); in svc_vc_reply()
994 mrep->m_data += sizeof(uint32_t); in svc_vc_reply()
996 xdrmbuf_create(&xdrs, mrep, XDR_ENCODE); in svc_vc_reply()
1009 m_fixhdr(mrep); in svc_vc_reply()
1014 M_PREPEND(mrep, sizeof(uint32_t), M_WAITOK); in svc_vc_reply()
1015 len = mrep->m_pkthdr.len; in svc_vc_reply()
1016 *mtod(mrep, uint32_t *) = in svc_vc_reply()
1019 /* For RPC-over-TLS, copy mrep to a chain of ext_pgs. */ in svc_vc_reply()
1031 mrep = _rpc_copym_into_ext_pgs(mrep, maxextsiz); in svc_vc_reply()
[all …]
H A Dsvc_dg.c230 struct mbuf *mrep; in svc_dg_reply() local
234 mrep = m_gethdr(M_WAITOK, MT_DATA); in svc_dg_reply()
236 xdrmbuf_create(&xdrs, mrep, XDR_ENCODE); in svc_dg_reply()
249 m_fixhdr(mrep); in svc_dg_reply()
250 error = sosend(xprt->xp_socket, addr, NULL, mrep, NULL, in svc_dg_reply()
256 m_freem(mrep); in svc_dg_reply()
H A Dclnt_bck.c300 /* For RPC-over-TLS, copy mrep to a chain of ext_pgs. */ in clnt_bck_call()
570 clnt_bck_svccall(void *arg, struct mbuf *mrep, uint32_t xid) in clnt_bck_svccall() argument
581 m_freem(mrep); in clnt_bck_svccall()
598 cr->cr_mrep = mrep; in clnt_bck_svccall()
613 m_freem(mrep); in clnt_bck_svccall()
H A Drpc_generic.c742 struct mbuf *mrep; in clnt_call_private() local
754 stat = CLNT_CALL_MBUF(cl, ext, proc, mreq, &mrep, utimeout); in clnt_call_private()
758 xdrmbuf_create(&xdrs, mrep, XDR_DECODE); in clnt_call_private()
/freebsd/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh201 # ifaces: lmep:a ---- lmep:b mrep:a ---- mrep:b
228 mrep=$(epair_base)
229 ifconfig ${mrep}a vnet ${mjid}
230 ifconfig ${mrep}b vnet ${rjid}
232 jexec ${mjid} ifconfig ${mrep}a inet 192.0.2.5/30 up
233 jexec ${mjid} ifconfig ${mrep}a inet6 2001:db8:1::1/64 alias
236 jexec ${rjid} ifconfig ${mrep}b inet 192.0.2.6/30 up
237 jexec ${rjid} ifconfig ${mrep}b inet6 2001:db8:1::2/64 alias
366 ifconfig ${mrep}a destroy
/freebsd/sys/fs/nfs/
H A Dnfs_commonkrpc.c1099 KASSERT(nd->nd_mrep != NULL, ("mrep shouldn't be NULL if no error\n")); in newnfs_request()