[PATCH] hw_features: clean center freq for falling back ht40 channels

Eduardo Abinader eduardoabinader at gmail.com
Tue Jan 17 02:49:33 PST 2017


Some channels fail to be set, when falling back to 20MHz, due to
remaining info of center freq. As we are going 20 MHz, reset the
info as well.
---
 src/ap/hw_features.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/ap/hw_features.c b/src/ap/hw_features.c
index d66ff4b..0e0878b 100644
--- a/src/ap/hw_features.c
+++ b/src/ap/hw_features.c
@@ -329,6 +329,8 @@ static void ieee80211n_check_scan(struct hostapd_iface *iface)
 	res = ieee80211n_allowed_ht40_channel_pair(iface);
 	if (!res) {
 		iface->conf->secondary_channel = 0;
+		iface->conf->vht_oper_centr_freq_seg0_idx = 0;
+		iface->conf->vht_oper_centr_freq_seg1_idx = 0;
 		res = 1;
 		wpa_printf(MSG_INFO, "Fallback to 20 MHz");
 	}
-- 
2.5.0




More information about the Hostap mailing list