wifi: iwlwifi: pcie: add another missing bh-disable for rxq->lock
authorJohannes Berg <johannes.berg@intel.com>
Fri, 8 Dec 2023 16:32:02 +0000 (18:32 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 12 Dec 2023 09:14:48 +0000 (10:14 +0100)
Evidently I had only looked at all the ones in rx.c, and missed this.
Add bh-disable to this use of the rxq->lock as well.

Fixes: 25edc8f259c7 ("iwlwifi: pcie: properly implement NAPI")
Reported-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com>
Link: https://msgid.link/20231208183100.e79ad3dae649.I8f19713c4383707f8be7fc20ff5cc1ecf12429bb@changeid
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/pcie/trans.c

index a468e5efeecd4f5f1c6d04794c3940ebdcbcbcc9..92253260f56832678cc149f562c6b18910a20655 100644 (file)
@@ -3106,7 +3106,7 @@ static u32 iwl_trans_pcie_dump_rbs(struct iwl_trans *trans,
        struct iwl_rxq *rxq = &trans_pcie->rxq[0];
        u32 i, r, j, rb_len = 0;
 
-       spin_lock(&rxq->lock);
+       spin_lock_bh(&rxq->lock);
 
        r = iwl_get_closed_rb_stts(trans, rxq);
 
@@ -3130,7 +3130,7 @@ static u32 iwl_trans_pcie_dump_rbs(struct iwl_trans *trans,
                *data = iwl_fw_error_next_data(*data);
        }
 
-       spin_unlock(&rxq->lock);
+       spin_unlock_bh(&rxq->lock);
 
        return rb_len;
 }