ath10k: fix arvif->wep_keys clearing
[deliverable/linux.git] / drivers / net / wireless / ath / ath10k / mac.c
index 2eead654fc3f332b7052d79dad519844d4ef96a5..db5a2c39be0f5d6088d4889230fb42a0aebf563f 100644 (file)
@@ -4720,6 +4720,13 @@ static int ath10k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
 
        key->hw_key_idx = key->keyidx;
 
+       if (is_wep) {
+               if (cmd == SET_KEY)
+                       arvif->wep_keys[key->keyidx] = key;
+               else
+                       arvif->wep_keys[key->keyidx] = NULL;
+       }
+
        /* the peer should not disappear in mid-way (unless FW goes awry) since
         * we already hold conf_mutex. we just make sure its there now. */
        spin_lock_bh(&ar->data_lock);
@@ -4745,11 +4752,6 @@ static int ath10k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
                flags |= WMI_KEY_GROUP;
 
        if (is_wep) {
-               if (cmd == SET_KEY)
-                       arvif->wep_keys[key->keyidx] = key;
-               else
-                       arvif->wep_keys[key->keyidx] = NULL;
-
                if (cmd == DISABLE_KEY)
                        ath10k_clear_vdev_key(arvif, key);
 
This page took 0.033623 seconds and 5 git commands to generate.