Home
last modified time | relevance | path

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

/drivers/scsi/qedf/
Dqedf_debugfs.c418 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_offload_stats_show() local
420 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_offload_stats_show()
421 if (!fw_fcoe_stats) { in qedf_offload_stats_show()
428 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_offload_stats_show()
443 fw_fcoe_stats->fcoe_rx_byte_cnt, in qedf_offload_stats_show()
444 fw_fcoe_stats->fcoe_rx_data_pkt_cnt, in qedf_offload_stats_show()
445 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt, in qedf_offload_stats_show()
446 fw_fcoe_stats->fcoe_rx_other_pkt_cnt, in qedf_offload_stats_show()
447 fw_fcoe_stats->fcoe_silent_drop_pkt_cmdq_full_cnt, in qedf_offload_stats_show()
448 fw_fcoe_stats->fcoe_silent_drop_pkt_crc_error_cnt, in qedf_offload_stats_show()
[all …]
Dqedf_main.c1935 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
1943 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_fc_get_host_stats()
1944 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
1953 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
1961 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
1962 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
1963 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
1964 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
1965 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
1966 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/drivers/scsi/csiostor/
Dt4fw_api_stor.h390 union fw_fcoe_stats { union