Lines Matching defs:snd_queue
310 struct snd_queue { struct
311 boolean_t enable;
312 uint8_t cq_qs; /* CQ's QS to which this SQ is pointing */
313 uint8_t cq_idx; /* CQ index (0 to 7) in the above QS */
314 uint16_t thresh;
315 volatile int free_cnt;
316 uint32_t head;
317 uint32_t tail;
318 uint64_t *skbuff;
319 void *desc;
321 struct nicvf *nic;
322 int idx; /* This queue index */
324 bus_dma_tag_t snd_buff_dmat;
325 struct snd_buff *snd_buff;
327 struct buf_ring *br; /* Transmission buf ring */
351 struct snd_queue sq[MAX_SND_QUEUES_PER_QS]; argument