This is a note to let you know that I've just added the patch titled

    iwlwifi: dvm: clear IWL_STA_UCODE_INPROGRESS when assoc fails

to the 3.13-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     iwlwifi-dvm-clear-iwl_sta_ucode_inprogress-when-assoc-fails.patch
and it can be found in the queue-3.13 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From ec6f678c74dbdb06a6a775bbb00f1d26c17c404b Mon Sep 17 00:00:00 2001
From: Emmanuel Grumbach <[email protected]>
Date: Tue, 18 Feb 2014 10:30:18 +0200
Subject: iwlwifi: dvm: clear IWL_STA_UCODE_INPROGRESS when assoc fails

From: Emmanuel Grumbach <[email protected]>

commit ec6f678c74dbdb06a6a775bbb00f1d26c17c404b upstream.

We set IWL_STA_UCODE_INPROGRESS flag when we add a station
and clear it when we send the LQ command for it. But the LQ
command is sent only when the association succeeds.
If the association doesn't succeed, we would leave this flag
set and that wouldn't indicate the station entry as vacant.

This probably fixes:
https://bugzilla.redhat.com/show_bug.cgi?id=1065663

Reviewed-by: Johannes Berg <[email protected]>
Signed-off-by: Emmanuel Grumbach <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/net/wireless/iwlwifi/dvm/sta.c |    1 +
 1 file changed, 1 insertion(+)

--- a/drivers/net/wireless/iwlwifi/dvm/sta.c
+++ b/drivers/net/wireless/iwlwifi/dvm/sta.c
@@ -590,6 +590,7 @@ void iwl_deactivate_station(struct iwl_p
                        sizeof(priv->tid_data[sta_id][tid]));
 
        priv->stations[sta_id].used &= ~IWL_STA_DRIVER_ACTIVE;
+       priv->stations[sta_id].used &= ~IWL_STA_UCODE_INPROGRESS;
 
        priv->num_stations--;
 


Patches currently in stable-queue which might be from 
[email protected] are

queue-3.13/mac80211-clear-sequence-fragment-number-in-qos-null-frames.patch
queue-3.13/iwlwifi-mvm-change-of-listen-interval-from-70-to-10.patch
queue-3.13/iwlwifi-disable-tx-ampdu-by-default-for-iwldvm.patch
queue-3.13/iwlwifi-dvm-clear-iwl_sta_ucode_inprogress-when-assoc-fails.patch
queue-3.13/iwlwifi-fix-tx-status-for-aggregated-packets.patch
queue-3.13/iwlwifi-mvm-don-t-warn-when-statistics-are-handled-late.patch
queue-3.13/mac80211-fix-ap-powersave-tx-vs.-wakeup-race.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to