From: Bob Copeland Date: Wed, 9 Sep 2015 16:47:34 +0000 (-0400) Subject: ath10k: enable monitor when OTHER_BSS requested X-Git-Tag: KARO-TX6UL-2015-11-03~90^2~124^2~1^2~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0d031c8995bcc065f9c5778069f2131f7d92d4d5;p=karo-tx-linux.git ath10k: enable monitor when OTHER_BSS requested By default, ath10k restricts received frames to those matching BSSID. When other BSS frames are requested (e.g. in mesh mode), add an internal monitor device so those frames are not filtered. Signed-off-by: Bob Copeland Signed-off-by: Kalle Valo --- diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c index 989d2a154f8f..80efcc8debfe 100644 --- a/drivers/net/wireless/ath/ath10k/mac.c +++ b/drivers/net/wireless/ath/ath10k/mac.c @@ -1070,6 +1070,7 @@ static bool ath10k_mac_monitor_vdev_is_needed(struct ath10k *ar) return false; return ar->monitor || + ar->filter_flags & FIF_OTHER_BSS || test_bit(ATH10K_CAC_RUNNING, &ar->dev_flags); }