|
|
@@ -1638,16 +1638,25 @@ void qede_fill_by_demand_stats(struct qede_dev *edev)
|
|
|
edev->stats.coalesced_bytes = stats.tpa_coalesced_bytes;
|
|
|
|
|
|
edev->stats.rx_64_byte_packets = stats.rx_64_byte_packets;
|
|
|
- edev->stats.rx_127_byte_packets = stats.rx_127_byte_packets;
|
|
|
- edev->stats.rx_255_byte_packets = stats.rx_255_byte_packets;
|
|
|
- edev->stats.rx_511_byte_packets = stats.rx_511_byte_packets;
|
|
|
- edev->stats.rx_1023_byte_packets = stats.rx_1023_byte_packets;
|
|
|
- edev->stats.rx_1518_byte_packets = stats.rx_1518_byte_packets;
|
|
|
- edev->stats.rx_1522_byte_packets = stats.rx_1522_byte_packets;
|
|
|
- edev->stats.rx_2047_byte_packets = stats.rx_2047_byte_packets;
|
|
|
- edev->stats.rx_4095_byte_packets = stats.rx_4095_byte_packets;
|
|
|
- edev->stats.rx_9216_byte_packets = stats.rx_9216_byte_packets;
|
|
|
- edev->stats.rx_16383_byte_packets = stats.rx_16383_byte_packets;
|
|
|
+ edev->stats.rx_65_to_127_byte_packets = stats.rx_65_to_127_byte_packets;
|
|
|
+ edev->stats.rx_128_to_255_byte_packets =
|
|
|
+ stats.rx_128_to_255_byte_packets;
|
|
|
+ edev->stats.rx_256_to_511_byte_packets =
|
|
|
+ stats.rx_256_to_511_byte_packets;
|
|
|
+ edev->stats.rx_512_to_1023_byte_packets =
|
|
|
+ stats.rx_512_to_1023_byte_packets;
|
|
|
+ edev->stats.rx_1024_to_1518_byte_packets =
|
|
|
+ stats.rx_1024_to_1518_byte_packets;
|
|
|
+ edev->stats.rx_1519_to_1522_byte_packets =
|
|
|
+ stats.rx_1519_to_1522_byte_packets;
|
|
|
+ edev->stats.rx_1519_to_2047_byte_packets =
|
|
|
+ stats.rx_1519_to_2047_byte_packets;
|
|
|
+ edev->stats.rx_2048_to_4095_byte_packets =
|
|
|
+ stats.rx_2048_to_4095_byte_packets;
|
|
|
+ edev->stats.rx_4096_to_9216_byte_packets =
|
|
|
+ stats.rx_4096_to_9216_byte_packets;
|
|
|
+ edev->stats.rx_9217_to_16383_byte_packets =
|
|
|
+ stats.rx_9217_to_16383_byte_packets;
|
|
|
edev->stats.rx_crc_errors = stats.rx_crc_errors;
|
|
|
edev->stats.rx_mac_crtl_frames = stats.rx_mac_crtl_frames;
|
|
|
edev->stats.rx_pause_frames = stats.rx_pause_frames;
|