diff mbox series

mac80211_hwsim: stats: Record the data that transferred in mac80211_hwsim_tx_frame

Message ID 20210622152429.881230-1-phind.uet@gmail.com
State New
Headers show
Series mac80211_hwsim: stats: Record the data that transferred in mac80211_hwsim_tx_frame | expand

Commit Message

Nguyen Dinh Phi June 22, 2021, 3:24 p.m. UTC
The data go through mac80211_hwsim_tx_frame_no_nl() wasn't counted

Signed-off-by: Nguyen Dinh Phi <phind.uet@gmail.com>
---
 drivers/net/wireless/mac80211_hwsim.c | 2 ++
 1 file changed, 2 insertions(+)

--
2.25.1
diff mbox series

Patch

diff --git a/drivers/net/wireless/mac80211_hwsim.c b/drivers/net/wireless/mac80211_hwsim.c
index 7a6fd46d0c6e..6dbce437ba5a 100644
--- a/drivers/net/wireless/mac80211_hwsim.c
+++ b/drivers/net/wireless/mac80211_hwsim.c
@@ -1777,6 +1777,8 @@  static void mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
 	if (_pid || hwsim_virtio_enabled)
 		return mac80211_hwsim_tx_frame_nl(hw, skb, _pid);

+	data->tx_pkts++;
+	data->tx_bytes += skb->len;
 	mac80211_hwsim_tx_frame_no_nl(hw, skb, chan);
 	dev_kfree_skb(skb);
 }