Home
last modified time | relevance | path

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

/Linux-v6.1/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.c2064 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
2072 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_fc_get_host_stats()
2073 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
2082 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
2090 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
2091 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2092 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
2093 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
2094 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2095 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/Linux-v6.1/drivers/scsi/csiostor/
Dt4fw_api_stor.h390 union fw_fcoe_stats { union