
* mac80211: fix HT40 mode for 6G band The channel offset used for VHT segment calculation was missing for HT Signed-off-by: Felix Fietkau <nbd@nbd.name> * mac80211: refresh patch Signed-off-by: Felix Fietkau <nbd@nbd.name> * mac80211: add missing change for encap offload on devices with sw rate control Signed-off-by: Felix Fietkau <nbd@nbd.name> * ath9k: owl-loader: remove obsolete AR71XX patch this is no longer necessary as the AR71XX target was superseded by ath79. Signed-off-by: Christian Lamparter <chunkeey@gmail.com> * mac80211: revert faulty change that was breaking broadcast tx Fixes: 0f6887972adc ("mac80211: add missing change for encap offload on devices with sw rate control") Signed-off-by: Felix Fietkau <nbd@nbd.name> * mac80211: Update to backports-5.10.68 Refresh all patches. The removed patches were integrated upstream. This contains fixes for CVE-2020-3702 1. These patches (ath, ath9k, mac80211) were included in kernel versions since 4.14.245 and 4.19.205. They fix security vulnerability CVE-2020-3702 [1] similar to KrØØk, which was found by ESET [2]. Thank you Josef Schlehofer for reporting this problem. [1] https://nvd.nist.gov/vuln/detail/CVE-2020-3702 [2] https://www.welivesecurity.com/2020/08/06/beyond-kr00k-even-more-wifi-chips-vulnerable-eavesdropping/ Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> * mac80211: backport support for BSS color changes This is needed for an upcoming mt76 update Signed-off-by: Felix Fietkau <nbd@nbd.name> Co-authored-by: Felix Fietkau <nbd@nbd.name> Co-authored-by: Christian Lamparter <chunkeey@gmail.com> Co-authored-by: Hauke Mehrtens <hauke@hauke-m.de>
12 lines
385 B
Diff
12 lines
385 B
Diff
--- a/net/mac80211/cfg.c
|
|
+++ b/net/mac80211/cfg.c
|
|
@@ -2463,7 +2463,7 @@ static int ieee80211_scan(struct wiphy *
|
|
* the frames sent while scanning on other channel will be
|
|
* lost)
|
|
*/
|
|
- if (sdata->u.ap.beacon &&
|
|
+ if (0 && sdata->u.ap.beacon &&
|
|
(!(wiphy->features & NL80211_FEATURE_AP_SCAN) ||
|
|
!(req->flags & NL80211_SCAN_FLAG_AP)))
|
|
return -EOPNOTSUPP;
|