Home
last modified time | relevance | path

Searched refs:cntrs (Results 1 – 18 of 18) sorted by relevance

/Linux-v4.19/drivers/infiniband/ulp/opa_vnic/
Dopa_vnic_vema_iface.c85 struct opa_veswport_summary_counters *cntrs) in opa_vnic_get_summary_counters() argument
96 cntrs->vp_instance = cpu_to_be16(adapter->vport_num); in opa_vnic_get_summary_counters()
97 cntrs->vesw_id = cpu_to_be16(adapter->info.vesw.vesw_id); in opa_vnic_get_summary_counters()
98 cntrs->veswport_num = cpu_to_be32(adapter->port_num); in opa_vnic_get_summary_counters()
100 cntrs->tx_errors = cpu_to_be64(vstats.netstats.tx_errors); in opa_vnic_get_summary_counters()
101 cntrs->rx_errors = cpu_to_be64(vstats.netstats.rx_errors); in opa_vnic_get_summary_counters()
102 cntrs->tx_packets = cpu_to_be64(vstats.netstats.tx_packets); in opa_vnic_get_summary_counters()
103 cntrs->rx_packets = cpu_to_be64(vstats.netstats.rx_packets); in opa_vnic_get_summary_counters()
104 cntrs->tx_bytes = cpu_to_be64(vstats.netstats.tx_bytes); in opa_vnic_get_summary_counters()
105 cntrs->rx_bytes = cpu_to_be64(vstats.netstats.rx_bytes); in opa_vnic_get_summary_counters()
[all …]
Dopa_vnic_vema.c495 struct opa_veswport_summary_counters *cntrs; in vema_get_summary_counters() local
500 cntrs = (struct opa_veswport_summary_counters *)rsp_mad->data; in vema_get_summary_counters()
501 opa_vnic_get_summary_counters(adapter, cntrs); in vema_get_summary_counters()
517 struct opa_veswport_error_counters *cntrs; in vema_get_error_counters() local
522 cntrs = (struct opa_veswport_error_counters *)rsp_mad->data; in vema_get_error_counters()
523 opa_vnic_get_error_counters(adapter, cntrs); in vema_get_error_counters()
Dopa_vnic_internal.h314 struct opa_veswport_summary_counters *cntrs);
316 struct opa_veswport_error_counters *cntrs);
/Linux-v4.19/drivers/infiniband/hw/qib/
Dqib_mad.c1437 struct qib_verbs_counters cntrs; in pma_get_portcounters() local
1440 qib_get_counters(ppd, &cntrs); in pma_get_portcounters()
1443 cntrs.symbol_error_counter -= ibp->z_symbol_error_counter; in pma_get_portcounters()
1444 cntrs.link_error_recovery_counter -= in pma_get_portcounters()
1446 cntrs.link_downed_counter -= ibp->z_link_downed_counter; in pma_get_portcounters()
1447 cntrs.port_rcv_errors -= ibp->z_port_rcv_errors; in pma_get_portcounters()
1448 cntrs.port_rcv_remphys_errors -= ibp->z_port_rcv_remphys_errors; in pma_get_portcounters()
1449 cntrs.port_xmit_discards -= ibp->z_port_xmit_discards; in pma_get_portcounters()
1450 cntrs.port_xmit_data -= ibp->z_port_xmit_data; in pma_get_portcounters()
1451 cntrs.port_rcv_data -= ibp->z_port_rcv_data; in pma_get_portcounters()
[all …]
Dqib_verbs.c1111 struct qib_verbs_counters *cntrs) in qib_get_counters() argument
1120 cntrs->symbol_error_counter = in qib_get_counters()
1122 cntrs->link_error_recovery_counter = in qib_get_counters()
1129 cntrs->link_downed_counter = in qib_get_counters()
1131 cntrs->port_rcv_errors = in qib_get_counters()
1141 cntrs->port_rcv_errors += in qib_get_counters()
1143 cntrs->port_rcv_errors += in qib_get_counters()
1145 cntrs->port_rcv_remphys_errors = in qib_get_counters()
1147 cntrs->port_xmit_discards = in qib_get_counters()
1149 cntrs->port_xmit_data = ppd->dd->f_portcntr(ppd, in qib_get_counters()
[all …]
Dqib_7220.h48 u64 *cntrs; member
Dqib_verbs.h268 struct qib_verbs_counters *cntrs);
Dqib_iba6120.c220 u64 *cntrs; member
1486 kfree(dd->cspec->cntrs); in qib_6120_setup_cleanup()
2499 dd->cspec->cntrs = kmalloc_array(dd->cspec->ncntrs, sizeof(u64), in init_6120_cntrnames()
2523 u64 *cntr = dd->cspec->cntrs; in qib_read_6120cntrs()
Dqib_iba7220.c1785 kfree(dd->cspec->cntrs); in qib_setup_7220_cleanup()
3150 dd->cspec->cntrs = kmalloc_array(dd->cspec->ncntrs, sizeof(u64), in init_7220_cntrnames()
3167 if (!dd->cspec->cntrs) { in qib_read_7220cntrs()
3178 u64 *cntr = dd->cspec->cntrs; in qib_read_7220cntrs()
Dqib_iba7322.c547 u64 *cntrs; member
2876 kfree(dd->cspec->cntrs); in qib_setup_7322_cleanup()
5013 dd->cspec->cntrs = kmalloc_array(dd->cspec->ncntrs, sizeof(u64), in init_7322_cntrnames()
5039 u64 *cntr = dd->cspec->cntrs; in qib_read_7322cntrs()
/Linux-v4.19/drivers/gpu/drm/msm/
Dmsm_perf.c89 uint32_t cntrs[5]; in refill_buf() local
99 ARRAY_SIZE(cntrs), cntrs); in refill_buf()
110 val = cntrs[i] / 10000; in refill_buf()
Dmsm_gpu.c556 static int update_hw_cntrs(struct msm_gpu *gpu, uint32_t ncntrs, uint32_t *cntrs) in update_hw_cntrs() argument
567 cntrs[i] = current_cntrs[i] - gpu->last_cntrs[i]; in update_hw_cntrs()
624 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs) in msm_gpu_perfcntr_sample() argument
641 ret = update_hw_cntrs(gpu, ncntrs, cntrs); in msm_gpu_perfcntr_sample()
Dmsm_gpu.h273 uint32_t *totaltime, uint32_t ncntrs, uint32_t *cntrs);
/Linux-v4.19/drivers/net/fddi/skfp/
Dskfddi.c783 bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls; in skfp_ctl_get_stats()
784 bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls; in skfp_ctl_get_stats()
785 bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls; in skfp_ctl_get_stats()
786 bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls; in skfp_ctl_get_stats()
787 bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls; in skfp_ctl_get_stats()
788 bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls; in skfp_ctl_get_stats()
789 bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls; in skfp_ctl_get_stats()
790 bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls; in skfp_ctl_get_stats()
791 bp->stats.port_lem_reject_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[1].ls; in skfp_ctl_get_stats()
792 bp->stats.port_lem_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[0].ls; in skfp_ctl_get_stats()
[all …]
/Linux-v4.19/drivers/net/fddi/
Ddefxx.c2201 bp->stats.mac_frame_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.frame_cnt.ls; in dfx_ctl_get_stats()
2202 bp->stats.mac_copied_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.copied_cnt.ls; in dfx_ctl_get_stats()
2203 bp->stats.mac_transmit_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.transmit_cnt.ls; in dfx_ctl_get_stats()
2204 bp->stats.mac_error_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.error_cnt.ls; in dfx_ctl_get_stats()
2205 bp->stats.mac_lost_cts = bp->cmd_rsp_virt->cntrs_get.cntrs.lost_cnt.ls; in dfx_ctl_get_stats()
2206 bp->stats.port_lct_fail_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[0].ls; in dfx_ctl_get_stats()
2207 bp->stats.port_lct_fail_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lct_rejects[1].ls; in dfx_ctl_get_stats()
2208 bp->stats.port_lem_reject_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[0].ls; in dfx_ctl_get_stats()
2209 bp->stats.port_lem_reject_cts[1] = bp->cmd_rsp_virt->cntrs_get.cntrs.lem_rejects[1].ls; in dfx_ctl_get_stats()
2210 bp->stats.port_lem_cts[0] = bp->cmd_rsp_virt->cntrs_get.cntrs.link_errors[0].ls; in dfx_ctl_get_stats()
[all …]
Ddefxx.h922 PI_CNTR_BLK cntrs; member
930 PI_CNTR_BLK cntrs; member
/Linux-v4.19/drivers/infiniband/hw/hfi1/
Dchip.c12028 *cntrp = dd->cntrs; in hfi1_read_cntrs()
12051 dd->cntrs[entry->offset + j] = in hfi1_read_cntrs()
12065 dd->cntrs[entry->offset + j] = in hfi1_read_cntrs()
12072 dd->cntrs[entry->offset] = val; in hfi1_read_cntrs()
12097 *cntrp = ppd->cntrs; in hfi1_read_portcntrs()
12118 ppd->cntrs[entry->offset + j] = val; in hfi1_read_portcntrs()
12125 ppd->cntrs[entry->offset] = val; in hfi1_read_portcntrs()
12142 kfree(ppd->cntrs); in free_cntrs()
12147 ppd->cntrs = NULL; in free_cntrs()
12155 kfree(dd->cntrs); in free_cntrs()
[all …]
Dhfi.h874 u64 *cntrs; member
1232 u64 *cntrs; member