diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2011-03-23 16:29:52 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-03-30 22:15:18 +0400 |
commit | ec15e68ba6a505631016f230899bafbb7b8cd0d6 (patch) | |
tree | 21190a10af3c22ccd34b03f11088b5976ef3e34b /net/mac80211/sta_info.c | |
parent | cfdc9a8bb8d90c6aa212a5a881862599673c443d (diff) | |
download | linux-ec15e68ba6a505631016f230899bafbb7b8cd0d6.tar.xz |
cfg80211: Add nl80211 event for deletion of a station entry
Indicate an NL80211_CMD_DEL_STATION event when a station entry in
mac80211 is deleted to match with the NL80211_CMD_NEW_STATION event
that is used when the entry was added. This is needed, e.g., to allow
user space to remove a peer from RSN IBSS Authenticator state machine
to avoid re-authentication and re-keying delays when the peer is not
reachable anymore.
Signed-off-by: Jouni Malinen <jouni.malinen@atheros.com>
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/sta_info.c')
-rw-r--r-- | net/mac80211/sta_info.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/mac80211/sta_info.c b/net/mac80211/sta_info.c index d0311a322ddd..5ec0a7c51b6d 100644 --- a/net/mac80211/sta_info.c +++ b/net/mac80211/sta_info.c @@ -698,6 +698,8 @@ static int __must_check __sta_info_destroy(struct sta_info *sta) #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */ cancel_work_sync(&sta->drv_unblock_wk); + cfg80211_del_sta(sdata->dev, sta->sta.addr, GFP_KERNEL); + rate_control_remove_sta_debugfs(sta); ieee80211_sta_debugfs_remove(sta); |