mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
mac80211: warn if unhashing station fails
This shouldn't be happening, so warn if it does, since we'd then leak a station entry. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
9e890a1f21
commit
b01711be4b
@ -868,7 +868,7 @@ int __must_check __sta_info_destroy(struct sta_info *sta)
|
|||||||
ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
|
ieee80211_sta_tear_down_BA_sessions(sta, AGG_STOP_DESTROY_STA);
|
||||||
|
|
||||||
ret = sta_info_hash_del(local, sta);
|
ret = sta_info_hash_del(local, sta);
|
||||||
if (ret)
|
if (WARN_ON(ret))
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
list_del_rcu(&sta->list);
|
list_del_rcu(&sta->list);
|
||||||
|
Loading…
Reference in New Issue
Block a user