* [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm
@ 2024-08-27 0:51 David Wang
2024-08-27 6:26 ` Kalle Valo
0 siblings, 1 reply; 4+ messages in thread
From: David Wang @ 2024-08-27 0:51 UTC (permalink / raw)
To: miriam.rachel.korenblit, kvalo, johannes.berg, gregory.greenman,
pagadala.yesu.anjaneyulu, dan.carpenter, daniel.gabay
Cc: linux-wireless, linux-kernel, David Wang
On some HW, acpi _DSM query would failed for iwlwifi device
and everytime when network is reactiaved (boot,
suspend/resume, manually restart network, etc.),
bunch of kernel warning shows up together:
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
since iwlwifi would make 8 acpi/dsm queries for lari config.
But for iwlwifi, it is safe to cache the _DSM errors,
since it is not possible to correct it without upgrading BIOS.
With this patch, those kernel warnings would only show up once when
booting the system and unnecessary acpi/dsm queries are avoid.
Signed-off-by: David Wang <00107082@163.com>
---
drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
index 79774c8c7ff4..3f98f522daac 100644
--- a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
+++ b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
@@ -30,6 +30,8 @@ static const size_t acpi_dsm_size[DSM_FUNC_NUM_FUNCS] = {
[DSM_FUNC_ENABLE_11BE] = sizeof(u32),
};
+static int acpi_dsm_func_retcode[DSM_FUNC_NUM_FUNCS] = {0};
+
static int iwl_acpi_get_handle(struct device *dev, acpi_string method,
acpi_handle *ret_handle)
{
@@ -169,6 +171,10 @@ int iwl_acpi_get_dsm(struct iwl_fw_runtime *fwrt,
if (WARN_ON(func >= ARRAY_SIZE(acpi_dsm_size)))
return -EINVAL;
+ /* If HW return an error once, do not bother try again. */
+ if (acpi_dsm_func_retcode[func])
+ return acpi_dsm_func_retcode[func];
+
expected_size = acpi_dsm_size[func];
/* Currently all ACPI DSMs are either 8-bit or 32-bit */
@@ -177,6 +183,7 @@ int iwl_acpi_get_dsm(struct iwl_fw_runtime *fwrt,
ret = iwl_acpi_get_dsm_integer(fwrt->dev, ACPI_DSM_REV, func,
&iwl_guid, &tmp, expected_size);
+ acpi_dsm_func_retcode[func] = ret;
if (ret)
return ret;
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm
2024-08-27 0:51 [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm David Wang
@ 2024-08-27 6:26 ` Kalle Valo
2024-08-27 7:34 ` David Wang
2024-08-27 14:07 ` Ben Greear
0 siblings, 2 replies; 4+ messages in thread
From: Kalle Valo @ 2024-08-27 6:26 UTC (permalink / raw)
To: David Wang
Cc: miriam.rachel.korenblit, johannes.berg, gregory.greenman,
pagadala.yesu.anjaneyulu, dan.carpenter, daniel.gabay,
linux-wireless, linux-kernel
David Wang <00107082@163.com> writes:
> On some HW, acpi _DSM query would failed for iwlwifi device
> and everytime when network is reactiaved (boot,
> suspend/resume, manually restart network, etc.),
> bunch of kernel warning shows up together:
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
> since iwlwifi would make 8 acpi/dsm queries for lari config.
> But for iwlwifi, it is safe to cache the _DSM errors,
> since it is not possible to correct it without upgrading BIOS.
> With this patch, those kernel warnings would only show up once when
> booting the system and unnecessary acpi/dsm queries are avoid.
>
> Signed-off-by: David Wang <00107082@163.com>
> ---
> drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
> index 79774c8c7ff4..3f98f522daac 100644
> --- a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
> +++ b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
> @@ -30,6 +30,8 @@ static const size_t acpi_dsm_size[DSM_FUNC_NUM_FUNCS] = {
> [DSM_FUNC_ENABLE_11BE] = sizeof(u32),
> };
>
> +static int acpi_dsm_func_retcode[DSM_FUNC_NUM_FUNCS] = {0};
> +
> static int iwl_acpi_get_handle(struct device *dev, acpi_string method,
> acpi_handle *ret_handle)
> {
> @@ -169,6 +171,10 @@ int iwl_acpi_get_dsm(struct iwl_fw_runtime *fwrt,
> if (WARN_ON(func >= ARRAY_SIZE(acpi_dsm_size)))
> return -EINVAL;
>
> + /* If HW return an error once, do not bother try again. */
> + if (acpi_dsm_func_retcode[func])
> + return acpi_dsm_func_retcode[func];
Static variables are usually avoided because they are problematic if
there are multiple iwlwifi devices on the same host. Should the error
message be just removed entirely?
--
https://patchwork.kernel.org/project/linux-wireless/list/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm
2024-08-27 6:26 ` Kalle Valo
@ 2024-08-27 7:34 ` David Wang
2024-08-27 14:07 ` Ben Greear
1 sibling, 0 replies; 4+ messages in thread
From: David Wang @ 2024-08-27 7:34 UTC (permalink / raw)
To: Kalle Valo
Cc: miriam.rachel.korenblit, johannes.berg, gregory.greenman,
pagadala.yesu.anjaneyulu, dan.carpenter, daniel.gabay,
linux-wireless, linux-kernel
At 2024-08-27 14:26:42, "Kalle Valo" <kvalo@kernel.org> wrote:
>David Wang <00107082@163.com> writes:
>
>> On some HW, acpi _DSM query would failed for iwlwifi device
>> and everytime when network is reactiaved (boot,
>> suspend/resume, manually restart network, etc.),
>> bunch of kernel warning shows up together:
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> since iwlwifi would make 8 acpi/dsm queries for lari config.
>> But for iwlwifi, it is safe to cache the _DSM errors,
>> since it is not possible to correct it without upgrading BIOS.
>> With this patch, those kernel warnings would only show up once when
>> booting the system and unnecessary acpi/dsm queries are avoid.
>>
>> Signed-off-by: David Wang <00107082@163.com>
>> ---
>> drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> index 79774c8c7ff4..3f98f522daac 100644
>> --- a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> +++ b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> @@ -30,6 +30,8 @@ static const size_t acpi_dsm_size[DSM_FUNC_NUM_FUNCS] = {
>> [DSM_FUNC_ENABLE_11BE] = sizeof(u32),
>> };
>>
>> +static int acpi_dsm_func_retcode[DSM_FUNC_NUM_FUNCS] = {0};
>> +
>> static int iwl_acpi_get_handle(struct device *dev, acpi_string method,
>> acpi_handle *ret_handle)
>> {
>> @@ -169,6 +171,10 @@ int iwl_acpi_get_dsm(struct iwl_fw_runtime *fwrt,
>> if (WARN_ON(func >= ARRAY_SIZE(acpi_dsm_size)))
>> return -EINVAL;
>>
>> + /* If HW return an error once, do not bother try again. */
>> + if (acpi_dsm_func_retcode[func])
>> + return acpi_dsm_func_retcode[func];
>
>Static variables are usually avoided because they are problematic if
>there are multiple iwlwifi devices on the same host. Should the error
>message be just removed entirely?
Thanks for the review~
Yep, you're quite right! I did not consider multiple iwlwifi devices.
The repeated error messages really bother me, but they are from acpi driver, I don't think it can be removed entirely....
Would moving the cache into device structure acceptable?
Thanks
David
>
>--
>https://patchwork.kernel.org/project/linux-wireless/list/
>
>https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm
2024-08-27 6:26 ` Kalle Valo
2024-08-27 7:34 ` David Wang
@ 2024-08-27 14:07 ` Ben Greear
1 sibling, 0 replies; 4+ messages in thread
From: Ben Greear @ 2024-08-27 14:07 UTC (permalink / raw)
To: Kalle Valo, David Wang
Cc: miriam.rachel.korenblit, johannes.berg, gregory.greenman,
pagadala.yesu.anjaneyulu, dan.carpenter, daniel.gabay,
linux-wireless, linux-kernel
On 8/26/24 23:26, Kalle Valo wrote:
> David Wang <00107082@163.com> writes:
>
>> On some HW, acpi _DSM query would failed for iwlwifi device
>> and everytime when network is reactiaved (boot,
>> suspend/resume, manually restart network, etc.),
>> bunch of kernel warning shows up together:
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> ACPI: \: failed to evaluate _DSM bf0212f2-788f-c64d-a5b3-1f738e285ade (0x1001)
>> since iwlwifi would make 8 acpi/dsm queries for lari config.
>> But for iwlwifi, it is safe to cache the _DSM errors,
>> since it is not possible to correct it without upgrading BIOS.
>> With this patch, those kernel warnings would only show up once when
>> booting the system and unnecessary acpi/dsm queries are avoid.
>>
>> Signed-off-by: David Wang <00107082@163.com>
>> ---
>> drivers/net/wireless/intel/iwlwifi/fw/acpi.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> index 79774c8c7ff4..3f98f522daac 100644
>> --- a/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> +++ b/drivers/net/wireless/intel/iwlwifi/fw/acpi.c
>> @@ -30,6 +30,8 @@ static const size_t acpi_dsm_size[DSM_FUNC_NUM_FUNCS] = {
>> [DSM_FUNC_ENABLE_11BE] = sizeof(u32),
>> };
>>
>> +static int acpi_dsm_func_retcode[DSM_FUNC_NUM_FUNCS] = {0};
>> +
>> static int iwl_acpi_get_handle(struct device *dev, acpi_string method,
>> acpi_handle *ret_handle)
>> {
>> @@ -169,6 +171,10 @@ int iwl_acpi_get_dsm(struct iwl_fw_runtime *fwrt,
>> if (WARN_ON(func >= ARRAY_SIZE(acpi_dsm_size)))
>> return -EINVAL;
>>
>> + /* If HW return an error once, do not bother try again. */
>> + if (acpi_dsm_func_retcode[func])
>> + return acpi_dsm_func_retcode[func];
>
> Static variables are usually avoided because they are problematic if
> there are multiple iwlwifi devices on the same host. Should the error
> message be just removed entirely?
In this particular case, probably static would be best since it would not
be helpful to see the duplicated errors for each individual interface anyway?
But also, I'm fine with just making the warning go away entirely.
Thanks,
Ben
--
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc http://www.candelatech.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-27 14:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-27 0:51 [PATCH] wifi: iwlwifi: acpi/dsm: cache error retcode for iwl_acpi_get_dsm David Wang
2024-08-27 6:26 ` Kalle Valo
2024-08-27 7:34 ` David Wang
2024-08-27 14:07 ` Ben Greear
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).