diff options
Diffstat (limited to 'net/mac80211/key.c')
-rw-r--r-- | net/mac80211/key.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/mac80211/key.c b/net/mac80211/key.c index 659a42d529e3..e8f6e3b252d8 100644 --- a/net/mac80211/key.c +++ b/net/mac80211/key.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/list.h> | 14 | #include <linux/list.h> |
15 | #include <linux/rcupdate.h> | 15 | #include <linux/rcupdate.h> |
16 | #include <linux/rtnetlink.h> | 16 | #include <linux/rtnetlink.h> |
17 | #include <linux/slab.h> | ||
17 | #include <net/mac80211.h> | 18 | #include <net/mac80211.h> |
18 | #include "ieee80211_i.h" | 19 | #include "ieee80211_i.h" |
19 | #include "driver-ops.h" | 20 | #include "driver-ops.h" |
@@ -139,7 +140,7 @@ static void ieee80211_key_enable_hw_accel(struct ieee80211_key *key) | |||
139 | struct ieee80211_sub_if_data, | 140 | struct ieee80211_sub_if_data, |
140 | u.ap); | 141 | u.ap); |
141 | 142 | ||
142 | ret = drv_set_key(key->local, SET_KEY, &sdata->vif, sta, &key->conf); | 143 | ret = drv_set_key(key->local, SET_KEY, sdata, sta, &key->conf); |
143 | 144 | ||
144 | if (!ret) { | 145 | if (!ret) { |
145 | spin_lock_bh(&todo_lock); | 146 | spin_lock_bh(&todo_lock); |
@@ -181,7 +182,7 @@ static void ieee80211_key_disable_hw_accel(struct ieee80211_key *key) | |||
181 | struct ieee80211_sub_if_data, | 182 | struct ieee80211_sub_if_data, |
182 | u.ap); | 183 | u.ap); |
183 | 184 | ||
184 | ret = drv_set_key(key->local, DISABLE_KEY, &sdata->vif, | 185 | ret = drv_set_key(key->local, DISABLE_KEY, sdata, |
185 | sta, &key->conf); | 186 | sta, &key->conf); |
186 | 187 | ||
187 | if (ret) | 188 | if (ret) |
@@ -421,7 +422,7 @@ void ieee80211_key_link(struct ieee80211_key *key, | |||
421 | */ | 422 | */ |
422 | 423 | ||
423 | /* same here, the AP could be using QoS */ | 424 | /* same here, the AP could be using QoS */ |
424 | ap = sta_info_get(key->local, key->sdata->u.mgd.bssid); | 425 | ap = sta_info_get(key->sdata, key->sdata->u.mgd.bssid); |
425 | if (ap) { | 426 | if (ap) { |
426 | if (test_sta_flags(ap, WLAN_STA_WME)) | 427 | if (test_sta_flags(ap, WLAN_STA_WME)) |
427 | key->conf.flags |= | 428 | key->conf.flags |= |
@@ -443,7 +444,7 @@ void ieee80211_key_link(struct ieee80211_key *key, | |||
443 | add_todo(old_key, KEY_FLAG_TODO_DELETE); | 444 | add_todo(old_key, KEY_FLAG_TODO_DELETE); |
444 | 445 | ||
445 | add_todo(key, KEY_FLAG_TODO_ADD_DEBUGFS); | 446 | add_todo(key, KEY_FLAG_TODO_ADD_DEBUGFS); |
446 | if (netif_running(sdata->dev)) | 447 | if (ieee80211_sdata_running(sdata)) |
447 | add_todo(key, KEY_FLAG_TODO_HWACCEL_ADD); | 448 | add_todo(key, KEY_FLAG_TODO_HWACCEL_ADD); |
448 | 449 | ||
449 | spin_unlock_irqrestore(&sdata->local->key_lock, flags); | 450 | spin_unlock_irqrestore(&sdata->local->key_lock, flags); |
@@ -509,7 +510,7 @@ void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata) | |||
509 | { | 510 | { |
510 | ASSERT_RTNL(); | 511 | ASSERT_RTNL(); |
511 | 512 | ||
512 | if (WARN_ON(!netif_running(sdata->dev))) | 513 | if (WARN_ON(!ieee80211_sdata_running(sdata))) |
513 | return; | 514 | return; |
514 | 515 | ||
515 | ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_ADD); | 516 | ieee80211_todo_for_each_key(sdata, KEY_FLAG_TODO_HWACCEL_ADD); |