Lines Matching refs:k_wc
30 struct rvt_k_cq_wc *k_wc = NULL; in rvt_cq_enter() local
44 k_wc = cq->kqueue; in rvt_cq_enter()
45 kqueue = &k_wc->kqueue[0]; in rvt_cq_enter()
46 head = k_wc->head; in rvt_cq_enter()
47 tail = k_wc->tail; in rvt_cq_enter()
98 k_wc->head = next; in rvt_cq_enter()
165 struct rvt_k_cq_wc *k_wc = NULL; in rvt_create_cq() local
197 sz += sizeof(*k_wc); in rvt_create_cq()
198 k_wc = vzalloc_node(sz, rdi->dparms.node); in rvt_create_cq()
199 if (!k_wc) in rvt_create_cq()
256 cq->kqueue = k_wc; in rvt_create_cq()
265 vfree(k_wc); in rvt_create_cq()
347 struct rvt_k_cq_wc *k_wc = NULL; in rvt_resize_cq() local
364 sz += sizeof(*k_wc); in rvt_resize_cq()
365 k_wc = vzalloc_node(sz, rdi->dparms.node); in rvt_resize_cq()
366 if (!k_wc) in rvt_resize_cq()
409 k_wc->kqueue[n] = old_k_wc->kqueue[tail]; in rvt_resize_cq()
421 k_wc->head = n; in rvt_resize_cq()
422 k_wc->tail = 0; in rvt_resize_cq()
423 cq->kqueue = k_wc; in rvt_resize_cq()
460 vfree(k_wc); in rvt_resize_cq()