mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 05:55:44 +02:00
mac80211_hwsim: report NOACK frames in tx_status
[ Upstream commit 42a79960ff ]
Add IEEE80211_TX_STAT_NOACK_TRANSMITTED to tx_status flags to have proper
statistics for non-acked frames.
Signed-off-by: Benjamin Beichler <benjamin.beichler@uni-rostock.de>
Link: https://lore.kernel.org/r/20220111221327.1499881-1-benjamin.beichler@uni-rostock.de
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
915a747ac7
commit
46f6d66219
|
|
@ -3567,6 +3567,10 @@ static int hwsim_tx_info_frame_received_nl(struct sk_buff *skb_2,
|
||||||
}
|
}
|
||||||
txi->flags |= IEEE80211_TX_STAT_ACK;
|
txi->flags |= IEEE80211_TX_STAT_ACK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hwsim_flags & HWSIM_TX_CTL_NO_ACK)
|
||||||
|
txi->flags |= IEEE80211_TX_STAT_NOACK_TRANSMITTED;
|
||||||
|
|
||||||
ieee80211_tx_status_irqsafe(data2->hw, skb);
|
ieee80211_tx_status_irqsafe(data2->hw, skb);
|
||||||
return 0;
|
return 0;
|
||||||
out:
|
out:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user