Home
last modified time | relevance | path

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

/linux/drivers/scsi/qedf/
H A Dqedf_debugfs.c423 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_offload_stats_show() local
425 fw_fcoe_stats = kmalloc_obj(struct qed_fcoe_stats); in qedf_offload_stats_show()
426 if (!fw_fcoe_stats) { in qedf_offload_stats_show()
433 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_offload_stats_show()
448 fw_fcoe_stats->fcoe_rx_byte_cnt, in qedf_offload_stats_show()
449 fw_fcoe_stats->fcoe_rx_data_pkt_cnt, in qedf_offload_stats_show()
450 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt, in qedf_offload_stats_show()
451 fw_fcoe_stats->fcoe_rx_other_pkt_cnt, in qedf_offload_stats_show()
452 fw_fcoe_stats->fcoe_silent_drop_pkt_cmdq_full_cnt, in qedf_offload_stats_show()
453 fw_fcoe_stats->fcoe_silent_drop_pkt_crc_error_cnt, in qedf_offload_stats_show()
[all …]
H A Dqedf_main.c2077 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
2085 fw_fcoe_stats = kmalloc_obj(struct qed_fcoe_stats); in qedf_fc_get_host_stats()
2086 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
2095 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
2103 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
2104 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2105 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
2106 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
2107 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2108 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/linux/drivers/scsi/csiostor/
H A Dt4fw_api_stor.h390 union fw_fcoe_stats { union