Symbol: oce_rq
sys/dev/oce/oce_if.c
1509
oce_rx_mbuf_chain(struct oce_rq *rq, struct oce_common_cqe_info *cqe_info, struct mbuf **m)
sys/dev/oce/oce_if.c
1574
oce_rx_lro(struct oce_rq *rq, struct nic_hwlro_singleton_cqe *cqe, struct nic_hwlro_cqe_part2 *cqe2)
sys/dev/oce/oce_if.c
165
static void oce_rx(struct oce_rq *rq, struct oce_nic_rx_cqe *cqe);
sys/dev/oce/oce_if.c
1655
oce_rx(struct oce_rq *rq, struct oce_nic_rx_cqe *cqe)
sys/dev/oce/oce_if.c
166
static void oce_check_rx_bufs(POCE_SOFTC sc, uint32_t num_cqes, struct oce_rq *rq);
sys/dev/oce/oce_if.c
169
static void oce_rx_lro(struct oce_rq *rq, struct nic_hwlro_singleton_cqe *cqe, struct nic_hwlro_cqe_part2 *cqe2);
sys/dev/oce/oce_if.c
170
static void oce_rx_mbuf_chain(struct oce_rq *rq, struct oce_common_cqe_info *cqe_info, struct mbuf **m);
sys/dev/oce/oce_if.c
1753
oce_discard_rx_comp(struct oce_rq *rq, int num_frags)
sys/dev/oce/oce_if.c
1814
oce_rx_flush_lro(struct oce_rq *rq)
sys/dev/oce/oce_if.c
1862
oce_alloc_rx_bufs(struct oce_rq *rq, int count)
sys/dev/oce/oce_if.c
1942
oce_check_rx_bufs(POCE_SOFTC sc, uint32_t num_cqes, struct oce_rq *rq)
sys/dev/oce/oce_if.c
1961
struct oce_rq *rq = (struct oce_rq *)arg;
sys/dev/oce/oce_if.c
2035
struct oce_rq *rq = (struct oce_rq *)arg;
sys/dev/oce/oce_if.c
2308
struct oce_rq *rq;
sys/dev/oce/oce_if.c
2512
struct oce_rq *rq;
sys/dev/oce/oce_if.c
2559
struct oce_rq *rq;
sys/dev/oce/oce_if.h
1058
int oce_mbox_create_rq(struct oce_rq *rq);
sys/dev/oce/oce_if.h
1088
int oce_alloc_rx_bufs(struct oce_rq *rq, int count);
sys/dev/oce/oce_if.h
1101
int oce_mbox_create_rq_v2(struct oce_rq *rq);
sys/dev/oce/oce_if.h
845
struct oce_rq *rq[OCE_MAX_RQ]; /* RX work queues */
sys/dev/oce/oce_if.h
943
void oce_rx_flush_lro(struct oce_rq *rq);
sys/dev/oce/oce_if.h
957
int oce_clear_rx_buf(struct oce_rq *rq);
sys/dev/oce/oce_if.h
974
int oce_start_rq(struct oce_rq *rq);
sys/dev/oce/oce_if.h
984
void oce_drain_rq_cq(struct oce_rq *rq);
sys/dev/oce/oce_if.h
993
void oce_discard_rx_comp(struct oce_rq *rq, int num_frags);
sys/dev/oce/oce_if.h
994
void oce_rx_cq_clean(struct oce_rq *rq);
sys/dev/oce/oce_if.h
995
void oce_rx_cq_clean_hwlro(struct oce_rq *rq);
sys/dev/oce/oce_if.h
997
void oce_free_posted_rxbuf(struct oce_rq *rq);
sys/dev/oce/oce_mbox.c
1640
oce_mbox_create_rq(struct oce_rq *rq)
sys/dev/oce/oce_mbox.c
2274
oce_mbox_create_rq_v2(struct oce_rq *rq)
sys/dev/oce/oce_mbox.c
783
struct oce_rq *rq = NULL;
sys/dev/oce/oce_queue.c
1065
oce_drain_rq_cq(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
1089
oce_free_posted_rxbuf(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
1109
oce_rx_cq_clean_hwlro(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
1186
oce_rx_cq_clean(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
1237
struct oce_rq *rq;
sys/dev/oce/oce_queue.c
1282
struct oce_rq *rq;
sys/dev/oce/oce_queue.c
167
struct oce_rq *rq;
sys/dev/oce/oce_queue.c
386
oce_rq *oce_rq_init(POCE_SOFTC sc,
sys/dev/oce/oce_queue.c
391
struct oce_rq *rq;
sys/dev/oce/oce_queue.c
401
rq = malloc(sizeof(struct oce_rq), M_DEVBUF, M_NOWAIT | M_ZERO);
sys/dev/oce/oce_queue.c
452
oce_rq_free(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
487
oce_rq_create(struct oce_rq *rq, uint32_t if_id, struct oce_eq *eq)
sys/dev/oce/oce_queue.c
520
oce_rq_del(struct oce_rq *rq)
sys/dev/oce/oce_queue.c
53
static struct oce_rq *oce_rq_init(POCE_SOFTC sc,
sys/dev/oce/oce_queue.c
57
static int oce_rq_create(struct oce_rq *rq, uint32_t if_id, struct oce_eq *eq);
sys/dev/oce/oce_queue.c
58
static void oce_rq_free(struct oce_rq *rq);
sys/dev/oce/oce_queue.c
59
static void oce_rq_del(struct oce_rq *rq);
sys/dev/oce/oce_queue.c
90
struct oce_rq *rq;
sys/dev/oce/oce_queue.c
909
oce_start_rq(struct oce_rq *rq)