diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-05-22 16:22:20 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2015-05-26 15:21:27 +0200 |
commit | 80279fb7ba5b71981a60988b0307afa43f78f6b1 (patch) | |
tree | f209256191424c26c5e72fedb36ec90a398b19c3 /drivers/net/wireless/libertas/cmd.h | |
parent | c5a71688e1e56e155fb79b8d699322f4f0793cc8 (diff) | |
download | lwn-80279fb7ba5b71981a60988b0307afa43f78f6b1.tar.gz lwn-80279fb7ba5b71981a60988b0307afa43f78f6b1.zip |
cfg80211: properly send NL80211_ATTR_DISCONNECTED_BY_AP in disconnect
When we disconnect from the AP, drivers call cfg80211_disconnect().
This doesn't know whether the disconnection was initiated locally
or by the AP though, which can cause problems with the supplicant,
for example with WPS. This issue obviously doesn't show up with any
mac80211 based driver since mac80211 doesn't call this function.
Fix this by requiring drivers to indicate whether the disconnect is
locally generated or not. I've tried to update the drivers, but may
not have gotten the values correct, and some drivers may currently
not be able to report correct values. In case of doubt I left it at
false, which is the current behaviour.
For libertas, make adjustments as indicated by Dan Williams.
Reported-by: Matthieu Mauger <matthieux.mauger@intel.com>
Tested-by: Matthieu Mauger <matthieux.mauger@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/libertas/cmd.h')
-rw-r--r-- | drivers/net/wireless/libertas/cmd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/libertas/cmd.h b/drivers/net/wireless/libertas/cmd.h index 4279e8ab95f2..0c5444b02c64 100644 --- a/drivers/net/wireless/libertas/cmd.h +++ b/drivers/net/wireless/libertas/cmd.h @@ -68,7 +68,8 @@ int lbs_process_command_response(struct lbs_private *priv, u8 *data, u32 len); /* From cmdresp.c */ -void lbs_mac_event_disconnected(struct lbs_private *priv); +void lbs_mac_event_disconnected(struct lbs_private *priv, + bool locally_generated); |