Searched refs:rq (Results 1 – 5 of 5) sorted by relevance
/fs/ncpfs/ |
D | sock.c | 216 struct ncp_request_reply *rq; in __ncptcp_try_send() local 221 rq = server->tx.creq; in __ncptcp_try_send() 222 if (!rq) in __ncptcp_try_send() 226 memcpy(iovc, rq->tx_ciov, rq->tx_iovlen * sizeof(iov[0])); in __ncptcp_try_send() 227 result = do_send(server->ncp_sock, iovc, rq->tx_iovlen, in __ncptcp_try_send() 228 rq->tx_totallen, MSG_NOSIGNAL | MSG_DONTWAIT); in __ncptcp_try_send() 235 __ncp_abort_request(server, rq, result); in __ncptcp_try_send() 238 if (result >= rq->tx_totallen) { in __ncptcp_try_send() 239 server->rcv.creq = rq; in __ncptcp_try_send() 243 rq->tx_totallen -= result; in __ncptcp_try_send() [all …]
|
/fs/nfsd/ |
D | nfsd.h | 100 static inline int nfsd_v4client(struct svc_rqst *rq) in nfsd_v4client() argument 102 return rq->rq_prog == NFS_PROGRAM && rq->rq_vers == 4; in nfsd_v4client()
|
D | xdr4.h | 617 extern int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp);
|
D | nfs4xdr.c | 3582 int nfsd4_release_compoundargs(void *rq, __be32 *p, void *resp) in nfsd4_release_compoundargs() argument 3584 struct svc_rqst *rqstp = rq; in nfsd4_release_compoundargs()
|
/fs/dlm/ |
D | lock.c | 136 #define modes_compat(gr, rq) \ argument 137 __dlm_compat_matrix[(gr)->lkb_grmode + 1][(rq)->lkb_rqmode + 1] 2645 static int modes_require_bast(struct dlm_lkb *gr, struct dlm_lkb *rq) in modes_require_bast() argument 2647 if ((gr->lkb_grmode == DLM_LOCK_PR && rq->lkb_rqmode == DLM_LOCK_CW) || in modes_require_bast() 2648 (gr->lkb_grmode == DLM_LOCK_CW && rq->lkb_rqmode == DLM_LOCK_PR)) { in modes_require_bast() 2654 if (gr->lkb_highbast < rq->lkb_rqmode && !modes_compat(gr, rq)) in modes_require_bast()
|