Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 291317
b: refs/heads/master
c: 3251715
h: refs/heads/master
i:
  291315: 31c353a
v: v3
  • Loading branch information
Emmanuel Grumbach authored and John W. Linville committed Mar 8, 2012
1 parent d2e3812 commit 542d102
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 354928dd00d0437149991fad7637c411ba1c62f0
refs/heads/master: 3251715dc51a8cbd2cd030ff94fe36f37b4b9e74
2 changes: 2 additions & 0 deletions trunk/drivers/net/wireless/iwlwifi/iwl-agn-tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -1088,6 +1088,8 @@ int iwlagn_rx_reply_tx(struct iwl_priv *priv, struct iwl_rx_cmd_buffer *rxb,
ctx->vif->type == NL80211_IFTYPE_STATION) {
/* block and stop all queues */
priv->passive_no_rx = true;
IWL_DEBUG_TX_QUEUES(priv, "stop all queues: "
"passive channel");
ieee80211_stop_queues(priv->hw);

IWL_DEBUG_TX_REPLY(priv,
Expand Down
6 changes: 5 additions & 1 deletion trunk/drivers/net/wireless/iwlwifi/iwl-agn.c
Original file line number Diff line number Diff line change
Expand Up @@ -1450,8 +1450,12 @@ void iwlagn_lift_passive_no_rx(struct iwl_priv *priv)
return;

for (ac = IEEE80211_AC_VO; ac < IEEE80211_NUM_ACS; ac++) {
if (!test_bit(ac, &priv->transport_queue_stop))
if (!test_bit(ac, &priv->transport_queue_stop)) {
IWL_DEBUG_TX_QUEUES(priv, "Wake queue %d");
ieee80211_wake_queue(priv->hw, ac);
} else {
IWL_DEBUG_TX_QUEUES(priv, "Don't wake queue %d");
}
}

priv->passive_no_rx = false;
Expand Down

0 comments on commit 542d102

Please sign in to comment.