Skip to content

Commit 8458e48

Browse files
AviSternlucacoelho
authored andcommitted
iwlwifi: mvm: wake the correct mac80211 queue
iwl_mvm_start_mac_queues() takes a bitmap of the queues to wake. When deferred tx is purged, set the bit of the hw_queue so the correct queue will be waken up. Fixes: 7e39a00 ("iwlwifi: mvm: start mac queues when deferred tx frames are purged") Signed-off-by: Avraham Stern <[email protected]> Signed-off-by: Luca Coelho <[email protected]>
1 parent bd800e4 commit 8458e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,7 @@ static void iwl_mvm_purge_deferred_tx_frames(struct iwl_mvm *mvm,
25632563
* queues, so we should never get a second deferred
25642564
* frame for the RA/TID.
25652565
*/
2566-
iwl_mvm_start_mac_queues(mvm, info->hw_queue);
2566+
iwl_mvm_start_mac_queues(mvm, BIT(info->hw_queue));
25672567
ieee80211_free_txskb(mvm->hw, skb);
25682568
}
25692569
}

0 commit comments

Comments
 (0)