diff options
author | Michal Kazior <michal.kazior@tieto.com> | 2012-06-29 12:46:57 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2012-06-29 13:39:15 +0200 |
commit | ac800140c20e7ae51117e71289065bedd4930fc2 (patch) | |
tree | 7e9e762ed2a6a7b698db6c3cf4238dfa294364c3 /net/wireless/core.c | |
parent | 60771780c27cbc93d0b78da0c7fd7a8a540b029e (diff) | |
download | op-kernel-dev-ac800140c20e7ae51117e71289065bedd4930fc2.zip op-kernel-dev-ac800140c20e7ae51117e71289065bedd4930fc2.tar.gz |
cfg80211: .stop_ap when interface is going down
We'll need this for proper channel tracking (which
is going to be needed for channel context
accounting and finding matching/active interface
combination).
Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/wireless/core.c')
-rw-r--r-- | net/wireless/core.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/wireless/core.c b/net/wireless/core.c index ddd32af..c65f59c 100644 --- a/net/wireless/core.c +++ b/net/wireless/core.c @@ -810,6 +810,9 @@ static int cfg80211_netdev_notifier_call(struct notifier_block *nb, case NL80211_IFTYPE_MESH_POINT: cfg80211_leave_mesh(rdev, dev); break; + case NL80211_IFTYPE_AP: + cfg80211_stop_ap(rdev, dev); + break; default: break; } |