Symbol: oce_rq
usr/src/uts/common/io/fibre-channel/fca/oce/oce_hw.c
457
struct oce_rq **rss_queuep = &dev->rq[1];
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
57
static struct oce_rq *oce_rq_init(struct oce_dev *dev, uint32_t q_len,
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
60
static void oce_rq_fini(struct oce_dev *dev, struct oce_rq *rq);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
61
static int oce_rq_create(struct oce_rq *rq, uint32_t if_id, struct oce_eq *eq);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
62
static void oce_rq_del(struct oce_dev *dev, struct oce_rq *rq);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
691
static struct oce_rq *
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
697
struct oce_rq *rq;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
707
rq = kmem_zalloc(sizeof (struct oce_rq), KM_NOSLEEP);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
785
kmem_free(rq, sizeof (struct oce_rq));
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
798
oce_rq_fini(struct oce_dev *dev, struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
815
kmem_free(rq, sizeof (struct oce_rq));
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
821
oce_rq_create(struct oce_rq *rq, uint32_t if_id, struct oce_eq *eq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_queue.c
896
oce_rq_del(struct oce_dev *dev, struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
110
oce_rqb_cache_destroy(struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
153
oce_rqb_ctor(oce_rq_bdesc_t *rqbd, struct oce_rq *rq, size_t size, int flags)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
191
oce_rqb_alloc(struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
211
oce_rqb_free(struct oce_rq *rq, oce_rq_bdesc_t *rqbd)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
225
static void oce_rq_post_buffer(struct oce_rq *rq, int nbufs)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
257
oce_rq_charge(struct oce_rq *rq, uint32_t nbufs, boolean_t repost)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
299
oce_rq_discharge(struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
323
oce_rx(struct oce_dev *dev, struct oce_rq *rq, struct oce_nic_rx_cqe *cqe)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
33
static int oce_rqb_ctor(oce_rq_bdesc_t *rqbd, struct oce_rq *rq,
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
36
static inline mblk_t *oce_rx(struct oce_dev *dev, struct oce_rq *rq,
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
383
oce_rx_bcopy(struct oce_dev *dev, struct oce_rq *rq, struct oce_nic_rx_cqe *cqe)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
39
struct oce_rq *rq, struct oce_nic_rx_cqe *cqe);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
40
static int oce_rq_charge(struct oce_rq *rq, uint32_t nbufs, boolean_t repost);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
43
static inline void oce_rx_drop_pkt(struct oce_rq *rq,
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
45
static oce_rq_bdesc_t *oce_rqb_alloc(struct oce_rq *rq);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
46
static void oce_rqb_free(struct oce_rq *rq, oce_rq_bdesc_t *rqbd);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
462
oce_rx_drop_pkt(struct oce_rq *rq, struct oce_nic_rx_cqe *cqe)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
47
static void oce_rq_post_buffer(struct oce_rq *rq, int nbufs);
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
487
struct oce_rq *rq;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
497
rq = (struct oce_rq *)arg;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
572
struct oce_rq *rq;
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
602
oce_clean_rq(struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
640
oce_start_rq(struct oce_rq *rq)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
657
oce_rx_pending(struct oce_dev *dev, struct oce_rq *rq, int32_t timeout)
usr/src/uts/common/io/fibre-channel/fca/oce/oce_rx.c
74
oce_rqb_cache_create(struct oce_rq *rq, size_t buf_size)
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_buf.h
174
int oce_rqb_cache_create(struct oce_rq *rq, size_t buf_size);
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_buf.h
175
void oce_rqb_cache_destroy(struct oce_rq *rq);
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_buf.h
92
struct oce_rq *rq;
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_impl.h
213
struct oce_rq *rq[OCE_MAX_RQ]; /* RXQ Array */
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_io.h
344
int oce_start_rq(struct oce_rq *rq);
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_io.h
345
void oce_clean_rq(struct oce_rq *rq);
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_io.h
346
void oce_rq_discharge(struct oce_rq *rq);
usr/src/uts/common/sys/fibre-channel/fca/oce/oce_io.h
347
int oce_rx_pending(struct oce_dev *dev, struct oce_rq *rq, int32_t timeout);