Home
last modified time | relevance | path

Searched refs:fw_fcoe_stats (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.10/drivers/scsi/qedf/
Dqedf_debugfs.c416 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_offload_stats_show() local
418 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_offload_stats_show()
419 if (!fw_fcoe_stats) { in qedf_offload_stats_show()
426 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_offload_stats_show()
441 fw_fcoe_stats->fcoe_rx_byte_cnt, in qedf_offload_stats_show()
442 fw_fcoe_stats->fcoe_rx_data_pkt_cnt, in qedf_offload_stats_show()
443 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt, in qedf_offload_stats_show()
444 fw_fcoe_stats->fcoe_rx_other_pkt_cnt, in qedf_offload_stats_show()
445 fw_fcoe_stats->fcoe_silent_drop_pkt_cmdq_full_cnt, in qedf_offload_stats_show()
446 fw_fcoe_stats->fcoe_silent_drop_pkt_crc_error_cnt, in qedf_offload_stats_show()
[all …]
Dqedf_main.c2038 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
2046 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_fc_get_host_stats()
2047 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
2056 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
2064 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
2065 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2066 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
2067 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
2068 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2069 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/Linux-v5.10/drivers/scsi/csiostor/
Dt4fw_api_stor.h390 union fw_fcoe_stats { union