Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 214651
b: refs/heads/master
c: d745d47
h: refs/heads/master
i:
  214649: af8f71f
  214647: d92a82d
v: v3
  • Loading branch information
Stanislaw Gruszka authored and John W. Linville committed Sep 14, 2010
1 parent 4e85087 commit ed7a7ea
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 25 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: d5926d9d6a183d109060f68c0b96ea2b33c15377
refs/heads/master: d745d472afcbc6354ebfee008123894a7f37e97e
14 changes: 3 additions & 11 deletions trunk/drivers/net/wireless/iwlwifi/iwl-agn.c
Original file line number Diff line number Diff line change
Expand Up @@ -2892,8 +2892,9 @@ static void __iwl_down(struct iwl_priv *priv)

IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");

if (!exit_pending)
set_bit(STATUS_EXIT_PENDING, &priv->status);
iwl_scan_cancel_timeout(priv, 200);

exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);

/* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
* to prevent rearm timer */
Expand Down Expand Up @@ -3503,15 +3504,6 @@ static void iwl_mac_stop(struct ieee80211_hw *hw)

priv->is_open = 0;

if (iwl_is_ready_rf(priv) || test_bit(STATUS_SCAN_HW, &priv->status)) {
/* stop mac, cancel any scan request and clear
* RXON_FILTER_ASSOC_MSK BIT
*/
mutex_lock(&priv->mutex);
iwl_scan_cancel_timeout(priv, 100);
mutex_unlock(&priv->mutex);
}

iwl_down(priv);

flush_workqueue(priv->workqueue);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/iwlwifi/iwl-scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ int iwl_scan_cancel(struct iwl_priv *priv)
if (test_bit(STATUS_SCANNING, &priv->status)) {
if (!test_and_set_bit(STATUS_SCAN_ABORTING, &priv->status)) {
IWL_DEBUG_SCAN(priv, "Queuing scan abort.\n");
queue_work(priv->workqueue, &priv->abort_scan);
schedule_work(&priv->abort_scan);

} else
IWL_DEBUG_SCAN(priv, "Scan abort already in progress.\n");
Expand Down
16 changes: 4 additions & 12 deletions trunk/drivers/net/wireless/iwlwifi/iwl3945-base.c
Original file line number Diff line number Diff line change
Expand Up @@ -2567,12 +2567,13 @@ static void iwl3945_cancel_deferred_work(struct iwl_priv *priv);
static void __iwl3945_down(struct iwl_priv *priv)
{
unsigned long flags;
int exit_pending = test_bit(STATUS_EXIT_PENDING, &priv->status);
int exit_pending;

IWL_DEBUG_INFO(priv, DRV_NAME " is going down\n");

if (!exit_pending)
set_bit(STATUS_EXIT_PENDING, &priv->status);
iwl_scan_cancel_timeout(priv, 200);

exit_pending = test_and_set_bit(STATUS_EXIT_PENDING, &priv->status);

/* Stop TX queues watchdog. We need to have STATUS_EXIT_PENDING bit set
* to prevent rearm timer */
Expand Down Expand Up @@ -3172,15 +3173,6 @@ static void iwl3945_mac_stop(struct ieee80211_hw *hw)

priv->is_open = 0;

if (iwl_is_ready_rf(priv)) {
/* stop mac, cancel any scan request and clear
* RXON_FILTER_ASSOC_MSK BIT
*/
mutex_lock(&priv->mutex);
iwl_scan_cancel_timeout(priv, 100);
mutex_unlock(&priv->mutex);
}

iwl3945_down(priv);

flush_workqueue(priv->workqueue);
Expand Down

0 comments on commit ed7a7ea

Please sign in to comment.