Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 750c607e authored by Jeff Kirsher's avatar Jeff Kirsher
Browse files

fm10k: renamed mbx_tx_dropped to mbx_tx_oversized



The use of dropped doesn't really mean dropped mailbox messages, but
rather specifically messages which were too large to fit in the remote
Rx FIFO. Rename the stat to more clearly indicate what it means.

Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: default avatarJacob Keller <jacob.e.keller@intel.com>
Acked-by: default avatarMatthew Vick <matthew.vick@intel.com>
Tested-by: default avatarKrishneil Singh <krishneil.k.singh@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent a7731cc8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ static const struct fm10k_stats fm10k_gstrings_global_stats[] = {
	FM10K_STAT("mac_rules_avail", hw.swapi.mac.avail),

	FM10K_STAT("mbx_tx_busy", hw.mbx.tx_busy),
	FM10K_STAT("mbx_tx_dropped", hw.mbx.tx_dropped),
	FM10K_STAT("mbx_tx_oversized", hw.mbx.tx_dropped),
	FM10K_STAT("mbx_tx_messages", hw.mbx.tx_messages),
	FM10K_STAT("mbx_tx_dwords", hw.mbx.tx_dwords),
	FM10K_STAT("mbx_rx_messages", hw.mbx.rx_messages),