Home
last modified time | relevance | path

Searched refs:qtype (Results 1 – 25 of 58) sorted by relevance

123

/linux-6.15/tools/testing/selftests/drivers/net/
H A Dqueues.py15 def sys_get_queues(ifname, qtype='rx') -> int: argument
20 def nl_get_queues(cfg, nl, qtype='rx'): argument
23 return len([q for q in queues if q['type'] == qtype])
64 for qtype in ['rx', 'tx']:
65 queues = nl_get_queues(cfg, snl, qtype)
69 expected = sys_get_queues(cfg.dev['ifname'], qtype)
H A Dstats.py127 for qtype in ['rx', 'tx']:
128 ksft_eq(len(queues[qtype]), len(set(queues[qtype])),
130 ksft_eq(len(queues[qtype]), max(queues[qtype]) + 1,
/linux-6.15/drivers/scsi/lpfc/
H A Dlpfc_debugfs.h420 lpfc_debug_dump_wq(struct lpfc_hba *phba, int qtype, int wqidx) in lpfc_debug_dump_wq() argument
425 if (qtype == DUMP_IO) { in lpfc_debug_dump_wq()
428 } else if (qtype == DUMP_MBX) { in lpfc_debug_dump_wq()
431 } else if (qtype == DUMP_ELS) { in lpfc_debug_dump_wq()
434 } else if (qtype == DUMP_NVMELS) { in lpfc_debug_dump_wq()
440 if (qtype == DUMP_IO) in lpfc_debug_dump_wq()
469 if (qtype == DUMP_IO) { in lpfc_debug_dump_cq()
473 } else if (qtype == DUMP_MBX) { in lpfc_debug_dump_cq()
477 } else if (qtype == DUMP_ELS) { in lpfc_debug_dump_cq()
481 } else if (qtype == DUMP_NVMELS) { in lpfc_debug_dump_cq()
[all …]
/linux-6.15/fs/bcachefs/
H A Dquota.c180 u8 qtype; member
185 static void prepare_msg(unsigned qtype, in prepare_msg() argument
192 msgs->m[msgs->nr].qtype = qtype; in prepare_msg()
198 unsigned qtype, in prepare_warning() argument
206 prepare_msg(qtype, counter, msgs, msg_type); in prepare_warning()
221 unsigned qtype, in bch2_quota_check_limit() argument
241 prepare_msg(qtype, counter, msgs, HARDBELOW); in bch2_quota_check_limit()
247 prepare_msg(qtype, counter, msgs, SOFTBELOW); in bch2_quota_check_limit()
449 unsigned qtype, qc; in bch2_sb_get_or_create_quota() local
451 for (qtype = 0; qtype < QTYP_NR; qtype++) in bch2_sb_get_or_create_quota()
[all …]
/linux-6.15/drivers/net/ethernet/freescale/dpaa2/
H A Ddpni.c620 enum dpni_queue_type qtype, in dpni_get_buffer_layout() argument
633 cmd_params->qtype = qtype; in dpni_get_buffer_layout()
679 cmd_params->qtype = qtype; in dpni_set_buffer_layout()
771 enum dpni_queue_type qtype, in dpni_get_qdid() argument
784 cmd_params->qtype = qtype; in dpni_get_qdid()
1473 enum dpni_queue_type qtype, in dpni_set_congestion_notification() argument
1486 cmd_params->qtype = qtype; in dpni_set_congestion_notification()
1536 cmd_params->qtype = qtype; in dpni_set_queue()
1586 cmd_params->qtype = qtype; in dpni_get_queue()
1688 cmd_params->qtype = qtype; in dpni_set_taildrop()
[all …]
H A Ddpni-cmd.h242 u8 qtype; member
260 u8 qtype; member
290 u8 qtype; member
455 u8 qtype; member
487 u8 qtype; member
506 u8 qtype; member
521 u8 qtype; member
628 u8 qtype; member
H A Ddpni.h360 enum dpni_queue_type qtype,
366 enum dpni_queue_type qtype,
398 enum dpni_queue_type qtype,
837 enum dpni_queue_type qtype,
846 enum dpni_queue_type qtype,
928 enum dpni_queue_type qtype,
/linux-6.15/drivers/net/wireless/ath/ath9k/
H A Drecv.c111 enum ath9k_rx_qtype qtype) in ath_rx_edma_buf_link() argument
118 rx_edma = &sc->rx.rx_edma[qtype]; in ath_rx_edma_buf_link()
139 enum ath9k_rx_qtype qtype) in ath_rx_addbuffer_edma() argument
156 enum ath9k_rx_qtype qtype) in ath_rx_remove_buffer() argument
162 rx_edma = &sc->rx.rx_edma[qtype]; in ath_rx_remove_buffer()
628 enum ath9k_rx_qtype qtype, in ath_edma_get_buffers() argument
661 ath_rx_edma_buf_link(sc, qtype); in ath_edma_get_buffers()
670 ath_rx_edma_buf_link(sc, qtype); in ath_edma_get_buffers()
682 enum ath9k_rx_qtype qtype) in ath_edma_get_next_rx_buf() argument
1070 enum ath9k_rx_qtype qtype; in ath_rx_tasklet() local
[all …]
H A Dar9003_mac.h114 enum ath9k_rx_qtype qtype);
/linux-6.15/drivers/net/ethernet/mellanox/mlx4/
H A Den_cq.c199 enum netdev_queue_type qtype; in mlx4_en_deactivate_cq() local
202 qtype = NETDEV_QUEUE_TYPE_RX; in mlx4_en_deactivate_cq()
204 qtype = NETDEV_QUEUE_TYPE_TX; in mlx4_en_deactivate_cq()
206 netif_queue_set_napi(cq->dev, cq->cq_idx, qtype, NULL); in mlx4_en_deactivate_cq()
/linux-6.15/drivers/usb/host/
H A Duhci-debug.c171 char *qtype; in uhci_show_qh() local
174 case USB_ENDPOINT_XFER_ISOC: qtype = "ISO"; break; in uhci_show_qh()
175 case USB_ENDPOINT_XFER_INT: qtype = "INT"; break; in uhci_show_qh()
176 case USB_ENDPOINT_XFER_BULK: qtype = "BLK"; break; in uhci_show_qh()
177 case USB_ENDPOINT_XFER_CONTROL: qtype = "CTL"; break; in uhci_show_qh()
178 default: qtype = "Skel" ; break; in uhci_show_qh()
182 space, "", qh, qtype, in uhci_show_qh()
/linux-6.15/drivers/net/ethernet/pensando/ionic/
H A Dionic_regs.h131 static inline void ionic_dbell_ring(u64 __iomem *db_page, int qtype, u64 val) in ionic_dbell_ring() argument
133 writeq(val, &db_page[qtype]); in ionic_dbell_ring()
H A Dionic_lif.c1178 u8 qtype; in ionic_lif_add_hwstamp_rxfilt() local
1186 ctx.cmd.rx_filter_add.qtype = qtype; in ionic_lif_add_hwstamp_rxfilt()
3899 int qtype; in ionic_lif_queue_identify() local
3905 for (qtype = 0; qtype < ARRAY_SIZE(ionic_qtype_versions); qtype++) { in ionic_lif_queue_identify()
3909 switch (qtype) { in ionic_lif_queue_identify()
3945 qtype, err); in ionic_lif_queue_identify()
3950 qtype, qti->version); in ionic_lif_queue_identify()
3952 qtype, qti->supported); in ionic_lif_queue_identify()
3954 qtype, qti->features); in ionic_lif_queue_identify()
3956 qtype, qti->desc_sz); in ionic_lif_queue_identify()
[all …]
/linux-6.15/drivers/net/ethernet/intel/idpf/
H A Didpf_ethtool.c725 static void idpf_add_empty_queue_stats(u64 **data, u16 qtype) in idpf_add_empty_queue_stats() argument
730 if (qtype == VIRTCHNL2_QUEUE_TYPE_RX) in idpf_add_empty_queue_stats()
877 u16 qtype; in idpf_get_ethtool_stats() local
896 qtype = VIRTCHNL2_QUEUE_TYPE_TX; in idpf_get_ethtool_stats()
902 idpf_add_empty_queue_stats(&data, qtype); in idpf_get_ethtool_stats()
904 idpf_add_queue_stats(&data, txq, qtype); in idpf_get_ethtool_stats()
924 qtype = VIRTCHNL2_QUEUE_TYPE_RX; in idpf_get_ethtool_stats()
939 idpf_add_empty_queue_stats(&data, qtype); in idpf_get_ethtool_stats()
941 idpf_add_queue_stats(&data, rxq, qtype); in idpf_get_ethtool_stats()
/linux-6.15/drivers/net/ethernet/chelsio/cxgb4/
H A Dcudbg_lib.h245 entry->qtype = type; in cudbg_fill_qdesc_txq()
257 entry->qtype = type; in cudbg_fill_qdesc_rxq()
269 entry->qtype = type; in cudbg_fill_qdesc_flq()
H A Dcudbg_entity.h335 u32 qtype; member
/linux-6.15/drivers/infiniband/hw/erdma/
H A Derdma_cq.c129 u8 opcode, syndrome, qtype; in erdma_poll_one_cqe() local
157 qtype = FIELD_GET(ERDMA_CQE_HDR_QTYPE_MASK, cqe_hdr); in erdma_poll_one_cqe()
161 if (qtype == ERDMA_CQE_QTYPE_SQ) { in erdma_poll_one_cqe()
H A Derdma_eq.c233 req.qtype = ERDMA_EQ_TYPE_CEQ; in create_eq_cmd()
279 req.qtype = ERDMA_EQ_TYPE_CEQ; in erdma_ceq_uninit_one()
H A Derdma_hw.h192 u8 qtype; member
203 u8 qtype; member
/linux-6.15/fs/xfs/
H A Dxfs_trans_dquot.c732 enum quota_type qtype; in xfs_quota_warn() local
736 qtype = PRJQUOTA; in xfs_quota_warn()
739 qtype = USRQUOTA; in xfs_quota_warn()
742 qtype = GRPQUOTA; in xfs_quota_warn()
748 quota_send_warning(make_kqid(&init_user_ns, qtype, dqp->q_id), in xfs_quota_warn()
H A Dxfs_dquot.c351 xfs_dqtype_t qtype = xfs_dquot_type(dqp); in xfs_dquot_disk_alloc() local
352 struct xfs_inode *quotip = xfs_quota_inode(mp, qtype); in xfs_dquot_disk_alloc()
366 if (!xfs_this_quota_on(dqp->q_mount, qtype)) { in xfs_dquot_disk_alloc()
407 xfs_qm_init_dquot_blk(tp, dqp->q_id, qtype, bp); in xfs_dquot_disk_alloc()
463 xfs_dqtype_t qtype = xfs_dquot_type(dqp); in xfs_dquot_disk_read() local
464 struct xfs_inode *quotip = xfs_quota_inode(mp, qtype); in xfs_dquot_disk_read()
470 if (!xfs_this_quota_on(mp, qtype)) { in xfs_dquot_disk_read()
/linux-6.15/drivers/net/ethernet/intel/ice/
H A Dice_controlq.h92 enum ice_ctl_q qtype; member
H A Dice_controlq.c627 cq->qtype = q_type; in ice_init_ctrlq()
885 static const char *ice_ctl_q_str(enum ice_ctl_q qtype) in ice_ctl_q_str() argument
887 switch (qtype) { in ice_ctl_q_str()
929 ice_ctl_q_str(cq->qtype), response ? "Response" : "Command", in ice_debug_cq()
/linux-6.15/drivers/net/ethernet/amd/pds_core/
H A Dcore.h243 enum pds_core_logical_qtype qtype, in pds_core_dbell_ring() argument
246 writeq(val, &db_page[qtype]); in pds_core_dbell_ring()
/linux-6.15/drivers/net/ethernet/chelsio/cxgb4vf/
H A Dt4vf_common.h375 enum t4_bar2_qtype qtype,

123