On Tue, 2012-05-22 at 09:45 +0300, Victor Goldenshtein wrote: > @@ -388,7 +389,10 @@ static void sta_set_sinfo(struct sta_info *sta, struct station_info *sinfo) > if ((sta->local->hw.flags & IEEE80211_HW_SIGNAL_DBM) || > (sta->local->hw.flags & IEEE80211_HW_SIGNAL_UNSPEC)) { > sinfo->filled |= STATION_INFO_SIGNAL | STATION_INFO_SIGNAL_AVG; > - sinfo->signal = (s8)sta->last_signal; > + if (local->ops->get_rssi) > + drv_get_rssi(local, sdata, &sinfo->signal); > + else > + sinfo->signal = (s8)sta->last_signal; > sinfo->signal_avg = (s8) -ewma_read(&sta->avg_signal); > } So .. you're filling a per-station value with a generic per-interface callback? What were you thinking? ;-) johannes -- 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