Searched refs:wc (Results 1 - 8 of 8) sorted by relevance

/net/rds/
H A Diw_send.c200 struct ib_wc wc; local
213 while (ib_poll_cq(cq, 1, &wc) > 0) {
214 rdsdebug("wc wr_id 0x%llx status %u byte_len %u imm_data %u\n",
215 (unsigned long long)wc.wr_id, wc.status, wc.byte_len,
216 be32_to_cpu(wc.ex.imm_data));
219 if (wc.status != IB_WC_SUCCESS) {
220 printk(KERN_ERR "WC Error: status = %d opcode = %d\n", wc.status, wc
[all...]
H A Dib_send.c188 /* In the error case, wc.opcode sometimes contains garbage */
279 struct ib_wc wc; local
293 while (ib_poll_cq(cq, 1, &wc) > 0) {
294 rdsdebug("wc wr_id 0x%llx status %u (%s) byte_len %u imm_data %u\n",
295 (unsigned long long)wc.wr_id, wc.status,
296 rds_ib_wc_status_str(wc.status), wc.byte_len,
297 be32_to_cpu(wc.ex.imm_data));
300 if (wc
[all...]
H A Dib_recv.c968 struct ib_wc wc; local
971 while (ib_poll_cq(ic->i_recv_cq, 1, &wc) > 0) {
972 rdsdebug("wc wr_id 0x%llx status %u (%s) byte_len %u imm_data %u\n",
973 (unsigned long long)wc.wr_id, wc.status,
974 rds_ib_wc_status_str(wc.status), wc.byte_len,
975 be32_to_cpu(wc.ex.imm_data));
987 if (wc.status == IB_WC_SUCCESS) {
988 rds_ib_process_recv(conn, recv, wc
[all...]
H A Diw_recv.c799 struct ib_wc wc; local
802 while (ib_poll_cq(ic->i_recv_cq, 1, &wc) > 0) {
803 rdsdebug("wc wr_id 0x%llx status %u byte_len %u imm_data %u\n",
804 (unsigned long long)wc.wr_id, wc.status, wc.byte_len,
805 be32_to_cpu(wc.ex.imm_data));
819 if (wc.status == IB_WC_SUCCESS) {
820 rds_iw_process_recv(conn, recv, wc.byte_len, state);
825 wc
[all...]
/net/9p/
H A Dtrans_rdma.c340 struct ib_wc wc; local
343 while ((ret = ib_poll_cq(cq, 1, &wc)) > 0) {
344 struct p9_rdma_context *c = (void *) (unsigned long) wc.wr_id;
348 handle_recv(client, rdma, c, wc.status, wc.byte_len);
353 handle_send(client, rdma, c, wc.status, wc.byte_len);
358 pr_err("unexpected completion type, c->wc_op=%d, wc.opcode=%d, status=%d\n",
359 c->wc_op, wc.opcode, wc
[all...]
/net/sunrpc/xprtrdma/
H A Dverbs.c137 rpcrdma_sendcq_process_wc(struct ib_wc *wc) argument
139 struct rpcrdma_mw *frmr = (struct rpcrdma_mw *)(unsigned long)wc->wr_id;
142 __func__, frmr, wc->status, wc->opcode);
144 if (wc->wr_id == 0ULL)
146 if (wc->status != IB_WC_SUCCESS)
206 rpcrdma_recvcq_process_wc(struct ib_wc *wc, struct list_head *sched_list) argument
209 (struct rpcrdma_rep *)(unsigned long)wc->wr_id;
212 __func__, rep, wc->status, wc
490 struct ib_wc wc; local
[all...]
H A Dsvc_rdma_transport.c291 struct ib_wc wc; local
300 while ((ret = ib_poll_cq(xprt->sc_rq_cq, 1, &wc)) > 0) {
301 ctxt = (struct svc_rdma_op_ctxt *)(unsigned long)wc.wr_id;
302 ctxt->wc_status = wc.status;
303 ctxt->byte_len = wc.byte_len;
305 if (wc.status != IB_WC_SUCCESS) {
385 struct ib_wc *wc; local
400 wc = &wc_a[i];
401 if (wc->status != IB_WC_SUCCESS) {
402 dprintk("svcrdma: sq wc er
[all...]
/net/netfilter/
H A Dxt_osf.c242 if (f->wss.wc >= OSF_WSS_MAX)
256 check_WSS = f->wss.wc;

Completed in 83 milliseconds