From: Ben Greear <greearb@xxxxxxxxxxxxxxx> Signed-off-by: Ben Greear <greearb@xxxxxxxxxxxxxxx> --- net/mac80211/sta_info.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index decd30c..83238b8 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -877,7 +877,9 @@ static void __sta_info_destroy_part2(struct sta_info *sta) if (sta->uploaded) { ret = drv_sta_state(local, sdata, sta, IEEE80211_STA_NONE, IEEE80211_STA_NOTEXIST); - WARN_ON_ONCE(ret != 0); + if (WARN_ON_ONCE(ret != 0)) + sdata_info(sdata, "sta-info-destroy: drv-sta-state error: %i, sta: %pM\n", + ret, sta->sta.addr); } sta_dbg(sdata, "Removed STA %pM\n", sta->sta.addr); -- 1.7.11.7 -- 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