projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
973f02c
)
iwlwifi: pcie: fix locking when "HW not ready"
author
Johannes Berg
<johannes.berg@intel.com>
Fri, 28 Jan 2022 12:30:52 +0000
(14:30 +0200)
committer
Kalle Valo
<kvalo@kernel.org>
Thu, 3 Feb 2022 08:24:48 +0000
(10:24 +0200)
If we run into this error path, we shouldn't unlock the mutex
since it's not locked since. Fix this.
Fixes: a6bd005fe92d ("iwlwifi: pcie: fix RF-Kill vs. firmware load race")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link:
https://lore.kernel.org/r/iwlwifi.20220128142706.5d16821d1433.Id259699ddf9806459856d6aefbdbe54477aecffd@changeid
drivers/net/wireless/intel/iwlwifi/pcie/trans.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
b/drivers/net/wireless/intel/iwlwifi/pcie/trans.c
index a63386a01232800f852423842950e3ee742f8b3c..ef14584fc0a1788c6ff99e81aac27c2476db6a6f 100644
(file)
--- a/
drivers/net/wireless/intel/iwlwifi/pcie/trans.c
+++ b/
drivers/net/wireless/intel/iwlwifi/pcie/trans.c
@@
-1329,8
+1329,7
@@
static int iwl_trans_pcie_start_fw(struct iwl_trans *trans,
/* This may fail if AMT took ownership of the device */
if (iwl_pcie_prepare_card_hw(trans)) {
IWL_WARN(trans, "Exit HW not ready\n");
- ret = -EIO;
- goto out;
+ return -EIO;
}
iwl_enable_rfkill_int(trans);