From: Yogesh Ashok Powar Date: Sun, 29 Jan 2012 10:28:35 +0000 (+0200) Subject: nl80211: Derive frequency for BSSes other than the first X-Git-Tag: aosp-jb-start~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7a6af4cbab1e1667ecf15e5aedb00f330a63839;p=thirdparty%2Fhostap.git nl80211: Derive frequency for BSSes other than the first Commit e4fb21676972952b5434e8c2a049e239d457abe6 moved frequency storage from driver struct to bss struct and is assigned in wpa_driver_nl80211_set_freq. As this wpa_driver_nl80211_set_freq is triggered only on the first_bss, bss->freq for other BSSes is never being set to the correct value. This sends MLME frames on frequency zero (initialized value of freq) for BSSes other than the first. To fix this derive frequency value from first_bss. Signed-off-by: Yogesh Ashok Powar --- diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index 71465bc17..c9d9d529d 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -7808,6 +7808,7 @@ static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type, new_bss->ifindex = ifidx; new_bss->drv = drv; new_bss->next = drv->first_bss.next; + new_bss->freq = drv->first_bss.freq; drv->first_bss.next = new_bss; if (drv_priv) *drv_priv = new_bss;