Home
last modified time | relevance | path

Searched refs:queue_idx (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/dev/enic/
H A Denic_txrx.c438 enic_prep_wq_for_simple_tx(struct enic *enic, uint16_t queue_idx) in enic_prep_wq_for_simple_tx() argument
449 wq = &enic->wq[queue_idx]; in enic_prep_wq_for_simple_tx()
460 enic_start_wq(struct enic *enic, uint16_t queue_idx) in enic_start_wq() argument
462 vnic_wq_enable(&enic->wq[queue_idx]); in enic_start_wq()
466 enic_stop_wq(struct enic *enic, uint16_t queue_idx) in enic_stop_wq() argument
470 ret = vnic_wq_disable(&enic->wq[queue_idx]); in enic_stop_wq()
478 enic_start_rq(struct enic *enic, uint16_t queue_idx) in enic_start_rq() argument
482 rq = &enic->rq[queue_idx]; in enic_start_rq()
H A Denic.h352 int enic_alloc_wq(struct enic *enic, uint16_t queue_idx,
354 void enic_start_wq(struct enic *enic, uint16_t queue_idx);
355 int enic_stop_wq(struct enic *enic, uint16_t queue_idx);
356 void enic_start_rq(struct enic *enic, uint16_t queue_idx);
/freebsd/sys/crypto/ccp/
H A Dccp_hardware.c743 unsigned queue_idx, j; in ccp_hw_attach() local
747 queue_idx = 0; in ccp_hw_attach()
804 for (; queue_idx < nitems(sc->queues); queue_idx++) { in ccp_hw_attach()
805 error = ccp_hw_attach_queue(dev, lsbmask, queue_idx); in ccp_hw_attach()
808 __func__, queue_idx); in ccp_hw_attach()
818 for (j = 0; j < queue_idx; j++) in ccp_hw_attach()
/freebsd/sys/dev/netmap/
H A Dif_ptnet.c1571 unsigned int queue_idx; in ptnet_transmit() local
1586 queue_idx = (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) ? in ptnet_transmit()
1589 if (unlikely(queue_idx >= sc->num_tx_rings)) { in ptnet_transmit()
1590 queue_idx %= sc->num_tx_rings; in ptnet_transmit()
1593 pq = sc->queues + queue_idx; in ptnet_transmit()
/freebsd/sys/dev/mpi3mr/
H A Dmpi3mr_cam.c953 uint8_t scsi_opcode, queue_idx; in mpi3mr_action_scsiio() local
1133 queue_idx = get_req_queue_index(sc); in mpi3mr_action_scsiio()
1134 cm->req_qidx = queue_idx; in mpi3mr_action_scsiio()
1137 (queue_idx + 1), __func__, __LINE__, scsi_opcode, csio->ccb_h.target_id, cm->hosttag); in mpi3mr_action_scsiio()
/freebsd/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_tx.c57 u16 stride, int node, int queue_idx) in mlx4_en_create_tx_ring() argument
167 ring->queue_index = queue_idx; in mlx4_en_create_tx_ring()
H A Den.h815 u32 size, u16 stride, int node, int queue_idx);
/freebsd/sys/dev/bnxt/bnxt_en/
H A Dbnxt_hwrm.c1878 uint8_t queue_idx; in bnxt_hwrm_pri2cos_idx() local
1881 queue_idx = queue_id % 10; in bnxt_hwrm_pri2cos_idx()
1882 if (queue_idx > BNXT_MAX_QUEUE) { in bnxt_hwrm_pri2cos_idx()
1890 pri2cos_idx[i] = queue_idx; in bnxt_hwrm_pri2cos_idx()
/freebsd/sys/dev/mana/
H A Dmana_en.c2537 uint32_t queue_idx; in mana_config_rss() local
2543 queue_idx = apc->indir_table[i]; in mana_config_rss()
2544 apc->rxobj_table[i] = apc->rxqs[queue_idx]->rxobj; in mana_config_rss()
/freebsd/sys/contrib/ena-com/ena_defs/
H A Dena_admin_defs.h431 uint16_t queue_idx; member
/freebsd/sys/contrib/ena-com/
H A Dena_com.c2613 get_cmd->queue_idx = ena_dev->stats_queue; in ena_com_get_dev_extended_stats()