Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/scsi/qedf/
Dqedf_debugfs.c388 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_offload_stats_show() local
390 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_offload_stats_show()
391 if (!fw_fcoe_stats) { in qedf_offload_stats_show()
398 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_offload_stats_show()
413 fw_fcoe_stats->fcoe_rx_byte_cnt, in qedf_offload_stats_show()
414 fw_fcoe_stats->fcoe_rx_data_pkt_cnt, in qedf_offload_stats_show()
415 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt, in qedf_offload_stats_show()
416 fw_fcoe_stats->fcoe_rx_other_pkt_cnt, in qedf_offload_stats_show()
417 fw_fcoe_stats->fcoe_silent_drop_pkt_cmdq_full_cnt, in qedf_offload_stats_show()
418 fw_fcoe_stats->fcoe_silent_drop_pkt_crc_error_cnt, in qedf_offload_stats_show()
[all …]
Dqedf_main.c1782 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
1790 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_fc_get_host_stats()
1791 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
1800 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
1808 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
1809 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
1810 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
1811 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
1812 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
1813 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/Linux-v4.19/drivers/scsi/csiostor/
Dt4fw_api_stor.h390 union fw_fcoe_stats { union