More on looking for bss and ies leaks... I am trying to understand the bss refcounting, but everywhere I look it seems like the code is weird at best. For instance: We create an assoc_data, assign a bss pointer in ieee80211_mgd_assoc, but do not claim a reference. Later, when deleting the assoc_data, the ref is not freed either, except in one error path where it is explicitly freed: if (!ieee80211_assoc_success(sdata, *bss, mgmt, len)) { /* oops -- internal error -- send timeout for now */ ieee80211_destroy_assoc_data(sdata, false); cfg80211_put_bss(sdata->local->hw.wiphy, *bss); return RX_MGMT_CFG80211_ASSOC_TIMEOUT; } This seems ripe for bugs, if not already buggy. Maybe we should be more explicit about always grabbing a ref when we take a reference to the pointer, and always put it when we destroy the pointer? I'll be happy to cook up some patches if this seems like the right path to take. Thanks, Ben -- Ben Greear <greearb@xxxxxxxxxxxxxxx> Candela Technologies Inc http://www.candelatech.com -- 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