|
Kmods SIG |
9a70cc |
From 9018fd7f2a73e9b290f48a56b421558fa31e8b75 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
9a70cc |
From: Bolarinwa Olayemi Saheed <refactormyself@gmail.com>
|
|
Kmods SIG |
9a70cc |
Date: Mon, 13 Jul 2020 19:55:27 +0200
|
|
Kmods SIG |
9a70cc |
Subject: [Backport 9018fd7f2a73] iwlegacy: Check the return value of
|
|
Kmods SIG |
9a70cc |
pcie_capability_read_*()
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
On failure pcie_capability_read_dword() sets it's last parameter, val
|
|
Kmods SIG |
9a70cc |
to 0. However, with Patch 14/14, it is possible that val is set to ~0 on
|
|
Kmods SIG |
9a70cc |
failure. This would introduce a bug because (x & x) == (~0 & x).
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
This bug can be avoided without changing the function's behaviour if the
|
|
Kmods SIG |
9a70cc |
return value of pcie_capability_read_dword is checked to confirm success.
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
Check the return value of pcie_capability_read_dword() to ensure success.
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
Suggested-by: Bjorn Helgaas <bjorn@helgaas.com>
|
|
Kmods SIG |
9a70cc |
Signed-off-by: Bolarinwa Olayemi Saheed <refactormyself@gmail.com>
|
|
Kmods SIG |
9a70cc |
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Kmods SIG |
9a70cc |
Link: https://lore.kernel.org/r/20200713175529.29715-3-refactormyself@gmail.com
|
|
Kmods SIG |
9a70cc |
---
|
|
Kmods SIG |
9a70cc |
src/common.c | 4 ++--
|
|
Kmods SIG |
9a70cc |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
Kmods SIG |
9a70cc |
|
|
Kmods SIG |
9a70cc |
diff --git a/src/common.c b/src/common.c
|
|
Kmods SIG |
9a70cc |
index 348c17ce72f5cd57b66fb5ae161b2381b3585bf3..f78e062df572abacb6ab7d3a271de85f5903247d 100644
|
|
Kmods SIG |
9a70cc |
--- a/src/common.c
|
|
Kmods SIG |
9a70cc |
+++ b/src/common.c
|
|
Kmods SIG |
9a70cc |
@@ -4286,8 +4286,8 @@ il_apm_init(struct il_priv *il)
|
|
Kmods SIG |
9a70cc |
* power savings, even without L1.
|
|
Kmods SIG |
9a70cc |
*/
|
|
Kmods SIG |
9a70cc |
if (il->cfg->set_l0s) {
|
|
Kmods SIG |
9a70cc |
- pcie_capability_read_word(il->pci_dev, PCI_EXP_LNKCTL, &lctl);
|
|
Kmods SIG |
9a70cc |
- if (lctl & PCI_EXP_LNKCTL_ASPM_L1) {
|
|
Kmods SIG |
9a70cc |
+ ret = pcie_capability_read_word(il->pci_dev, PCI_EXP_LNKCTL, &lctl);
|
|
Kmods SIG |
9a70cc |
+ if (!ret && (lctl & PCI_EXP_LNKCTL_ASPM_L1)) {
|
|
Kmods SIG |
9a70cc |
/* L1-ASPM enabled; disable(!) L0S */
|
|
Kmods SIG |
9a70cc |
il_set_bit(il, CSR_GIO_REG,
|
|
Kmods SIG |
9a70cc |
CSR_GIO_REG_VAL_L0S_ENABLED);
|
|
Kmods SIG |
9a70cc |
--
|
|
Kmods SIG |
9a70cc |
2.31.1
|
|
Kmods SIG |
9a70cc |
|