diff options
author | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-05-13 01:10:51 -0400 |
---|---|---|
committer | Emmanuel Grumbach <emmanuel.grumbach@intel.com> | 2014-05-13 06:53:53 -0400 |
commit | d090f878b0084344812dc7bb086e98cd24572e58 (patch) | |
tree | 93da25da4ea6039cf97891c44b353162ba0e6d3b /drivers | |
parent | 7f715626a9ddfa7df13f076f59fc62e3c99066cf (diff) |
iwlwifi: pcie: disable BHs in iwl_pcie_txq_check_wrptrs
This fixes:
=================================
[ INFO: inconsistent lock state ]
3.14.3+ #5 Tainted: G O
---------------------------------
inconsistent {SOFTIRQ-ON-W} -> {IN-SOFTIRQ-W} usage.
swapper/3/0 [HC0[0]:SC1[3]:HE1:SE0] takes:
(&(&txq->lock)->rlock){+.?...}, at: [<ffffffffa059803c>] iwl_pcie_enqueue_hcmd+0x12c/0x1000 [iwlwifi]
{SOFTIRQ-ON-W} state was registered at:
[<ffffffff810d9071>] __lock_acquire+0x5f1/0x13b0
[<ffffffff810d9ee0>] lock_acquire+0xb0/0x1f0
[<ffffffff817ef80e>] _raw_spin_lock+0x3e/0x80
[<ffffffffa0598f7a>] iwl_pcie_txq_check_wrptrs+0x6a/0xb0 [iwlwifi]
[<ffffffffa0594b5a>] iwl_pcie_irq_handler+0xdba/0x2670 [iwlwifi]
[<ffffffff810ef1e0>] irq_thread_fn+0x20/0x50
[<ffffffff810ef77f>] irq_thread+0x11f/0x150
[<ffffffff810a04f0>] kthread+0xf0/0x110
[<ffffffff817fa4bc>] ret_from_fork+0x7c/0xb0
irq event stamp: 1142192
hardirqs last enabled at (1142192): [<ffffffff817efb6c>] _raw_spin_unlock_irq+0x2c/0x40
hardirqs last disabled at (1142191): [<ffffffff817ef9ef>] _raw_spin_lock_irq+0x1f/0x80
softirqs last enabled at (1142188): [<ffffffff81079082>] _local_bh_enable+0x22/0x50
softirqs last disabled at (1142189): [<ffffffff8107ad35>] irq_exit+0xe5/0xf0
other info that might help us debug this:
Possible unsafe locking scenario:
CPU0
----
lock(&(&txq->lock)->rlock);
<Interrupt>
lock(&(&txq->lock)->rlock);
Fixes: ea68f46070c7 ("iwlwifi: pcie: clarify TX queue need_update handling")
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/wireless/iwlwifi/pcie/tx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/iwlwifi/pcie/tx.c b/drivers/net/wireless/iwlwifi/pcie/tx.c index 77a512a5a755..2841af350f2a 100644 --- a/drivers/net/wireless/iwlwifi/pcie/tx.c +++ b/drivers/net/wireless/iwlwifi/pcie/tx.c | |||
@@ -332,12 +332,12 @@ void iwl_pcie_txq_check_wrptrs(struct iwl_trans *trans) | |||
332 | for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) { | 332 | for (i = 0; i < trans->cfg->base_params->num_of_queues; i++) { |
333 | struct iwl_txq *txq = &trans_pcie->txq[i]; | 333 | struct iwl_txq *txq = &trans_pcie->txq[i]; |
334 | 334 | ||
335 | spin_lock(&txq->lock); | 335 | spin_lock_bh(&txq->lock); |
336 | if (trans_pcie->txq[i].need_update) { | 336 | if (trans_pcie->txq[i].need_update) { |
337 | iwl_pcie_txq_inc_wr_ptr(trans, txq); | 337 | iwl_pcie_txq_inc_wr_ptr(trans, txq); |
338 | trans_pcie->txq[i].need_update = false; | 338 | trans_pcie->txq[i].need_update = false; |
339 | } | 339 | } |
340 | spin_unlock(&txq->lock); | 340 | spin_unlock_bh(&txq->lock); |
341 | } | 341 | } |
342 | } | 342 | } |
343 | 343 | ||