Hi, In the Regulatory and DFS wiki it is mentioned that beacon hints are not processed for DFS channels. But i could not find the related piece of code which does this. So in DFS channels can we process beacon hints? Assuming that if AP is beaconing then there is no RADAR in that channel. But how do we handle channel switch (if we dont disconnect) then that channel is enabled for active scan? (or) should be we have something like this: --- net/wireless/reg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/wireless/reg.c b/net/wireless/reg.c index 8c6cf52..25b3173 100644 --- a/net/wireless/reg.c +++ b/net/wireless/reg.c @@ -1384,7 +1384,8 @@ static void handle_reg_beacon(struct wiphy *wiphy, unsigned int chan_idx, chan_before.center_freq = chan->center_freq; chan_before.flags = chan->flags; - if (chan->flags & IEEE80211_CHAN_NO_IR) { + if (!(chan->flags & IEEE80211_CHAN_RADAR) && + (chan->flags & IEEE80211_CHAN_NO_IR)) { chan->flags &= ~IEEE80211_CHAN_NO_IR; channel_changed = true; } -- Thanks, Regards, Chaitanya T K. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html