Lines Matching refs:k_wc
31 struct rvt_k_cq_wc *k_wc = NULL; in rvt_cq_enter() local
45 k_wc = cq->kqueue; in rvt_cq_enter()
46 kqueue = &k_wc->kqueue[0]; in rvt_cq_enter()
47 head = k_wc->head; in rvt_cq_enter()
48 tail = k_wc->tail; in rvt_cq_enter()
99 k_wc->head = next; in rvt_cq_enter()
167 struct rvt_k_cq_wc *k_wc = NULL; in rvt_create_cq() local
199 sz += sizeof(*k_wc); in rvt_create_cq()
200 k_wc = vzalloc_node(sz, rdi->dparms.node); in rvt_create_cq()
201 if (!k_wc) in rvt_create_cq()
258 cq->kqueue = k_wc; in rvt_create_cq()
267 vfree(k_wc); in rvt_create_cq()
349 struct rvt_k_cq_wc *k_wc = NULL; in rvt_resize_cq() local
366 sz += sizeof(*k_wc); in rvt_resize_cq()
367 k_wc = vzalloc_node(sz, rdi->dparms.node); in rvt_resize_cq()
368 if (!k_wc) in rvt_resize_cq()
411 k_wc->kqueue[n] = old_k_wc->kqueue[tail]; in rvt_resize_cq()
423 k_wc->head = n; in rvt_resize_cq()
424 k_wc->tail = 0; in rvt_resize_cq()
425 cq->kqueue = k_wc; in rvt_resize_cq()
462 vfree(k_wc); in rvt_resize_cq()