342-mac80211-do-not-pass-injected-frames-without-a-valid.patch 735 B

1234567891011121314151617181920212223
  1. From: Felix Fietkau <nbd@openwrt.org>
  2. Date: Wed, 2 Mar 2016 15:51:40 +0100
  3. Subject: [PATCH] mac80211: do not pass injected frames without a valid rate to
  4. the driver
  5. Fall back to rate control if the requested bitrate was not found.
  6. Fixes: dfdfc2beb0dd ("mac80211: Parse legacy and HT rate in injected frames")
  7. Signed-off-by: Felix Fietkau <nbd@openwrt.org>
  8. ---
  9. --- a/net/mac80211/tx.c
  10. +++ b/net/mac80211/tx.c
  11. @@ -1837,6 +1837,9 @@ static bool ieee80211_parse_tx_radiotap(
  12. }
  13. }
  14. + if (info->control.rates[0].idx < 0)
  15. + info->control.flags &= ~IEEE80211_TX_CTRL_RATE_INJECT;
  16. +
  17. info->control.rates[0].flags = rate_flags;
  18. info->control.rates[0].count = min_t(u8, rate_retries + 1,
  19. local->hw.max_rate_tries);