On Thu, 2008-05-22 at 19:53 +0300, Tomas Winkler wrote: > On Mon, May 12, 2008 at 9:37 PM, Vincent C Jones > <v.jones@xxxxxxxxxxxxxxxxxxxxxxx> wrote: > > > > On Mon, 2008-05-12 at 19:50 +0300, Tomas Winkler wrote: > > > >> Meanwhile we've reproduced the wpa_supplicant issue... > >> > > > > That is great news. Let me know when it is time to test again... > > Please try this one. I've just pasted that in so it's might be > white-space-wise broken > > diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c > index 7877d3b..5996e3d 100644 > --- a/net/mac80211/mlme.c > +++ b/net/mac80211/mlme.c > @@ -4080,17 +4080,18 @@ ieee80211_sta_scan_result(struct net_device *dev, > IW_EV_UINT_LEN); > } > > + > memset(&iwe, 0, sizeof(iwe)); > iwe.cmd = SIOCGIWFREQ; > - iwe.u.freq.m = bss->freq; > - iwe.u.freq.e = 6; > + iwe.u.freq.m = ieee80211_frequency_to_channel(bss->freq); > + iwe.u.freq.e = 0; > current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, > IW_EV_FREQ_LEN); > > memset(&iwe, 0, sizeof(iwe)); > iwe.cmd = SIOCGIWFREQ; > - iwe.u.freq.m = ieee80211_frequency_to_channel(bss->freq); > - iwe.u.freq.e = 0; > + iwe.u.freq.m = bss->freq; > + iwe.u.freq.e = 6; > current_ev = iwe_stream_add_event(current_ev, end_buf, &iwe, > IW_EV_FREQ_LEN); Wait a minute; what's mac80211 sending _two_ FREQ events for? That's not right. Dan -- 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