Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266269
b: refs/heads/master
c: 1dd9124
h: refs/heads/master
i:
  266267: a956880
v: v3
  • Loading branch information
Emmanuel Grumbach authored and John W. Linville committed Sep 19, 2011
1 parent 96164b9 commit 21148d9
Show file tree
Hide file tree
Showing 2 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: 403ba56aedf2b3092e12219188e5c248f04c5acc
refs/heads/master: 1dd9124e2911b34744672c91ad865f39711f5542
8 changes: 7 additions & 1 deletion trunk/drivers/net/wireless/iwlwifi/iwl-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1328,7 +1328,13 @@ void iwl_mac_remove_interface(struct ieee80211_hw *hw,

mutex_lock(&priv->shrd->mutex);

WARN_ON(ctx->vif != vif);
if (WARN_ON(ctx->vif != vif)) {
struct iwl_rxon_context *tmp;
IWL_ERR(priv, "ctx->vif = %p, vif = %p\n", ctx->vif, vif);
for_each_context(priv, tmp)
IWL_ERR(priv, "\tID = %d:\tctx = %p\tctx->vif = %p\n",
tmp->ctxid, tmp, tmp->vif);
}
ctx->vif = NULL;

iwl_teardown_interface(priv, vif, false);
Expand Down

0 comments on commit 21148d9

Please sign in to comment.