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