From: Ben Greear <greearb@xxxxxxxxxxxxxxx> The rdev_assoc path holds it's own reference, so the mlme_assoc must release the reference it took earlier before returning. This actually appears to be the leak I have been seeing in my tests. Signed-off-by: Ben Greear <greearb@xxxxxxxxxxxxxxx> --- net/wireless/mlme.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/wireless/mlme.c b/net/wireless/mlme.c index d975510..1c60268 100644 --- a/net/wireless/mlme.c +++ b/net/wireless/mlme.c @@ -432,8 +432,8 @@ out: if (err) { if (was_connected) SET_SME_STATE(wdev, CFG80211_SME_CONNECTED); - cfg80211_put_bss(&rdev->wiphy, req.bss); } + cfg80211_put_bss(&rdev->wiphy, req.bss); return err; } -- 1.7.3.4 -- 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