b94177e10f
The radio would stop communicating completely. This issue was easiest to trigger on AR913x devices, e.g. the TP-Link TL-WR1043ND, but other hardware was occasionally affected as well. The most critical issue was a race condition in disabling/enabling IRQs between the IRQ handler and the IRQ processing tasklet Signed-off-by: Felix Fietkau <nbd@nbd.name>
10 lines
391 B
Diff
10 lines
391 B
Diff
--- a/drivers/net/wireless/ath/ath9k/init.c
|
|
+++ b/drivers/net/wireless/ath/ath9k/init.c
|
|
@@ -777,6 +777,7 @@ static const struct ieee80211_iface_limi
|
|
BIT(NL80211_IFTYPE_AP) },
|
|
{ .max = 1, .types = BIT(NL80211_IFTYPE_P2P_CLIENT) |
|
|
BIT(NL80211_IFTYPE_P2P_GO) },
|
|
+ { .max = 1, .types = BIT(NL80211_IFTYPE_ADHOC) },
|
|
};
|
|
|
|
static const struct ieee80211_iface_limit wds_limits[] = {
|