On Tue, 2012-04-17 at 10:46 -0700, greearb@xxxxxxxxxxxxxxx wrote: > +static void ieee80211_get_et_stats(struct wiphy *wiphy, > + struct net_device *dev, > + struct ethtool_stats *stats, > + u64 *data) > +{ > + struct ieee80211_sub_if_data *sdata = IEEE80211_DEV_TO_SUB_IF(dev); > + struct sta_info *sta; > + struct ieee80211_local *local = sdata->local; > + > + memset(data, 0, sizeof(u64) * STA_STATS_LEN); > + > + rcu_read_lock(); > + list_for_each_entry_rcu(sta, &local->sta_list, list) { This doesn't seem right -- shouldn't it look up the BSSID or something and only work on managed interfaces? What if there really are two stations on this interface -- then it'll just overwrite it and return a random station's data? That's useless. 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