linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211_hwsim: stats: Record the data that transferred in mac80211_hwsim_tx_frame
@ 2021-06-22 15:24 Nguyen Dinh Phi
  0 siblings, 0 replies; only message in thread
From: Nguyen Dinh Phi @ 2021-06-22 15:24 UTC (permalink / raw)
  To: johannes, kvalo, davem, kuba; +Cc: linux-wireless, netdev, linux-kernel

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(+)

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);
 }
--
2.25.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2021-06-22 15:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-22 15:24 [PATCH] mac80211_hwsim: stats: Record the data that transferred in mac80211_hwsim_tx_frame Nguyen Dinh Phi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).