mwifiex: notify cfg80211 about MIC failures
Call cfg80211_michael_mic_failure() handler when there is a MIC error event from firmware. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kiran Divekar <dkiran@marvell.com> Signed-off-by: Bing Zhao <bzhao@marvell.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
641c869d40
commit
9c7ff737b6
|
@ -278,10 +278,16 @@ int mwifiex_process_sta_event(struct mwifiex_private *priv)
|
|||
|
||||
case EVENT_MIC_ERR_UNICAST:
|
||||
dev_dbg(adapter->dev, "event: UNICAST MIC ERROR\n");
|
||||
cfg80211_michael_mic_failure(priv->netdev, priv->cfg_bssid,
|
||||
NL80211_KEYTYPE_PAIRWISE,
|
||||
-1, NULL, GFP_KERNEL);
|
||||
break;
|
||||
|
||||
case EVENT_MIC_ERR_MULTICAST:
|
||||
dev_dbg(adapter->dev, "event: MULTICAST MIC ERROR\n");
|
||||
cfg80211_michael_mic_failure(priv->netdev, priv->cfg_bssid,
|
||||
NL80211_KEYTYPE_GROUP,
|
||||
-1, NULL, GFP_KERNEL);
|
||||
break;
|
||||
case EVENT_MIB_CHANGED:
|
||||
case EVENT_INIT_DONE:
|
||||
|
|
Loading…
Reference in New Issue