Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/scsi/qedf/
Dqedf_debugfs.c423 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_offload_stats_show() local
425 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); 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 …]
Dqedf_main.c2076 struct qed_fcoe_stats *fw_fcoe_stats; in qedf_fc_get_host_stats() local
2084 fw_fcoe_stats = kmalloc(sizeof(struct qed_fcoe_stats), GFP_KERNEL); in qedf_fc_get_host_stats()
2085 if (!fw_fcoe_stats) { in qedf_fc_get_host_stats()
2094 qed_ops->get_stats(qedf->cdev, fw_fcoe_stats); in qedf_fc_get_host_stats()
2102 qedf_stats->tx_frames += fw_fcoe_stats->fcoe_tx_data_pkt_cnt + in qedf_fc_get_host_stats()
2103 fw_fcoe_stats->fcoe_tx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2104 fw_fcoe_stats->fcoe_tx_other_pkt_cnt; in qedf_fc_get_host_stats()
2105 qedf_stats->rx_frames += fw_fcoe_stats->fcoe_rx_data_pkt_cnt + in qedf_fc_get_host_stats()
2106 fw_fcoe_stats->fcoe_rx_xfer_pkt_cnt + in qedf_fc_get_host_stats()
2107 fw_fcoe_stats->fcoe_rx_other_pkt_cnt; in qedf_fc_get_host_stats()
[all …]
/linux-6.12.1/drivers/scsi/csiostor/
Dt4fw_api_stor.h390 union fw_fcoe_stats { union