* [PATCH] iwlwifi: Demote messages about fw flags size to info
@ 2017-07-21 14:51 João Paulo Rechi Vita
2017-07-24 11:01 ` Coelho, Luciano
0 siblings, 1 reply; 8+ messages in thread
From: João Paulo Rechi Vita @ 2017-07-21 14:51 UTC (permalink / raw)
To: Johannes Berg, Emmanuel Grumbach, Luca Coelho,
Intel Linux Wireless, Kalle Valo
Cc: linux, João Paulo Rechi Vita, linux-wireless, netdev,
linux-kernel
These messages are not reporting a real error, just the fact that the
firmware knows about more flags then the driver.
Currently these messages are presented to the user during boot if there
is no bootsplash covering the console, sometimes even if the boot splash
is enabled but has not started yet by the time this message is shown.
Demoting it to the info level helps having a clean boot process.
Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
---
drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
index 6fdb5921e17f..557acd43d705 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
@@ -487,9 +487,9 @@ static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
- IWL_ERR(drv,
- "api flags index %d larger than supported by driver\n",
- api_index);
+ IWL_INFO(drv,
+ "api flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
@@ -511,9 +511,9 @@ static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
- IWL_ERR(drv,
- "capa flags index %d larger than supported by driver\n",
- api_index);
+ IWL_INFO(drv,
+ "capa flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
--
2.13.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] iwlwifi: Demote messages about fw flags size to info
2017-07-21 14:51 [PATCH] iwlwifi: Demote messages about fw flags size to info João Paulo Rechi Vita
@ 2017-07-24 11:01 ` Coelho, Luciano
2017-08-01 22:58 ` João Paulo Rechi Vita
0 siblings, 1 reply; 8+ messages in thread
From: Coelho, Luciano @ 2017-07-24 11:01 UTC (permalink / raw)
To: linuxwifi, kvalo@codeaurora.org, jprvita@gmail.com,
Berg, Johannes, Grumbach, Emmanuel
Cc: linux-wireless@vger.kernel.org, linux@endlessm.com,
netdev@vger.kernel.org, jprvita@endlessm.com,
linux-kernel@vger.kernel.org
On Fri, 2017-07-21 at 07:51 -0700, João Paulo Rechi Vita wrote:
> These messages are not reporting a real error, just the fact that the
> firmware knows about more flags then the driver.
>
> Currently these messages are presented to the user during boot if there
> is no bootsplash covering the console, sometimes even if the boot splash
> is enabled but has not started yet by the time this message is shown.
>
> Demoting it to the info level helps having a clean boot process.
>
> Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
> ---
The idea with this error is that if the firmware is too new and includes
a TLV that we are not aware of, there can be unexpected issues. For
instance, sometimes the FW API changes some of its structures and we use
TLVs to know which one to use. If a new struct is in use by the
firmware but not by the driver, problems will occur.
Recently we accidentally omitted one TLV from the driver and released a
new firmware that had it set... That's the error you are currently
seeing. We have a bugzilla entry[1] and it is fixed in our internal
tree. The fix will be sent upstream in the next -fixes round we send
out.
This specific case is harmless, but I'd rather keep this message as an
error, because in other situations it could lead to unexpected
behavioir, so I prefer to keep it very visible.
[1] https://bugzilla.kernel.org/show_bug.cgi?id=196195
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iwlwifi: Demote messages about fw flags size to info
2017-07-24 11:01 ` Coelho, Luciano
@ 2017-08-01 22:58 ` João Paulo Rechi Vita
2017-08-02 4:46 ` Luca Coelho
0 siblings, 1 reply; 8+ messages in thread
From: João Paulo Rechi Vita @ 2017-08-01 22:58 UTC (permalink / raw)
To: Coelho, Luciano
Cc: linuxwifi, kvalo@codeaurora.org, jprvita@gmail.com,
Berg, Johannes, Grumbach, Emmanuel,
linux-wireless@vger.kernel.org, linux@endlessm.com,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Hello Luca,
On Mon, Jul 24, 2017 at 4:01 AM, Coelho, Luciano
<luciano.coelho@intel.com> wrote:
> On Fri, 2017-07-21 at 07:51 -0700, João Paulo Rechi Vita wrote:
(...)
>> Currently these messages are presented to the user during boot if there
>> is no bootsplash covering the console, sometimes even if the boot splash
>> is enabled but has not started yet by the time this message is shown.
>>
I should have provided another piece of information here: all of this
happens even when booting with the 'quiet' kernel parameter.
> This specific case is harmless, but I'd rather keep this message as an
> error, because in other situations it could lead to unexpected
> behavioir, so I prefer to keep it very visible.
>
>
I see your point, and I understand the purpose of these messages. I'm
wondering if perhaps having them at the warning level would give them
enough visibility, while still keeping a clean boot process to the end
user. If so, I can send an updated patch.
Thanks for your reply and for pointing to the fix for the root cause
of that message.
Cheers,
......................................................................................
João Paulo Rechi Vita | +1.415.851.5778 | Endless
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] iwlwifi: Demote messages about fw flags size to info
2017-08-01 22:58 ` João Paulo Rechi Vita
@ 2017-08-02 4:46 ` Luca Coelho
2017-08-03 14:30 ` [PATCH v2] " João Paulo Rechi Vita
0 siblings, 1 reply; 8+ messages in thread
From: Luca Coelho @ 2017-08-02 4:46 UTC (permalink / raw)
To: João Paulo Rechi Vita
Cc: linuxwifi, kvalo@codeaurora.org, jprvita@gmail.com,
Berg, Johannes, Grumbach, Emmanuel,
linux-wireless@vger.kernel.org, linux@endlessm.com,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Hi João Paulo,
On Tue, 2017-08-01 at 15:58 -0700, João Paulo Rechi Vita wrote:
> Hello Luca,
>
> On Mon, Jul 24, 2017 at 4:01 AM, Coelho, Luciano
> <luciano.coelho@intel.com> wrote:
> > On Fri, 2017-07-21 at 07:51 -0700, João Paulo Rechi Vita wrote:
>
> (...)
>
> > > Currently these messages are presented to the user during boot if there
> > > is no bootsplash covering the console, sometimes even if the boot splash
> > > is enabled but has not started yet by the time this message is shown.
> > >
>
> I should have provided another piece of information here: all of this
> happens even when booting with the 'quiet' kernel parameter.
Oh, okay, that's annoying.
> > This specific case is harmless, but I'd rather keep this message as an
> > error, because in other situations it could lead to unexpected
> > behavioir, so I prefer to keep it very visible.
> >
> >
>
> I see your point, and I understand the purpose of these messages. I'm
> wondering if perhaps having them at the warning level would give them
> enough visibility, while still keeping a clean boot process to the end
> user. If so, I can send an updated patch.
>
> Thanks for your reply and for pointing to the fix for the root cause
> of that message.
Sure, I agree it's better to make it use IWL_WARN(), which will generate
a dev_warn() instead of a dev_err().
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2] iwlwifi: Demote messages about fw flags size to info
2017-08-02 4:46 ` Luca Coelho
@ 2017-08-03 14:30 ` João Paulo Rechi Vita
2017-08-03 14:36 ` David Laight
0 siblings, 1 reply; 8+ messages in thread
From: João Paulo Rechi Vita @ 2017-08-03 14:30 UTC (permalink / raw)
To: Johannes Berg, Emmanuel Grumbach, Luca Coelho,
Intel Linux Wireless, Kalle Valo
Cc: linux, linux-wireless, netdev, linux-kernel,
João Paulo Rechi Vita
These messages are not reporting a real error, just the fact that the
firmware knows about more flags then the driver.
Currently these messages are presented to the user during boot if there
is no bootsplash covering the console, even when booting the kernel with
"quiet".
Demoting it to the warn level helps having a clean boot process.
Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
---
v2 changes:
- Set to warn level instead of info
drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
index be466a074c1d..c98a254bbd4d 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
@@ -461,9 +461,9 @@ static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
- IWL_ERR(drv,
- "api flags index %d larger than supported by driver\n",
- api_index);
+ IWL_WARN(drv,
+ "api flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
@@ -485,9 +485,9 @@ static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
- IWL_ERR(drv,
- "capa flags index %d larger than supported by driver\n",
- api_index);
+ IWL_WARN(drv,
+ "capa flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
--
2.13.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* RE: [PATCH v2] iwlwifi: Demote messages about fw flags size to info
2017-08-03 14:30 ` [PATCH v2] " João Paulo Rechi Vita
@ 2017-08-03 14:36 ` David Laight
2017-08-03 14:47 ` [PATCH v3] " João Paulo Rechi Vita
0 siblings, 1 reply; 8+ messages in thread
From: David Laight @ 2017-08-03 14:36 UTC (permalink / raw)
To: 'João Paulo Rechi Vita', Johannes Berg,
Emmanuel Grumbach, Luca Coelho, Intel Linux Wireless, Kalle Valo
Cc: linux@endlessm.com, linux-wireless@vger.kernel.org,
netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
João Paulo Rechi Vita
From: João Paulo Rechi Vita
> Sent: 03 August 2017 15:30
> These messages are not reporting a real error, just the fact that the
> firmware knows about more flags then the driver.
than
>
> Currently these messages are presented to the user during boot if there
> is no bootsplash covering the console, even when booting the kernel with
> "quiet".
>
> Demoting it to the warn level helps having a clean boot process.
>
> Signed-off-by: Joo Paulo Rechi Vita <jprvita@endlessm.com>
David
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3] iwlwifi: Demote messages about fw flags size to info
2017-08-03 14:36 ` David Laight
@ 2017-08-03 14:47 ` João Paulo Rechi Vita
2017-08-08 8:21 ` Coelho, Luciano
0 siblings, 1 reply; 8+ messages in thread
From: João Paulo Rechi Vita @ 2017-08-03 14:47 UTC (permalink / raw)
To: Johannes Berg, Emmanuel Grumbach, Luca Coelho,
Intel Linux Wireless, Kalle Valo
Cc: linux, linux-wireless, netdev, linux-kernel,
João Paulo Rechi Vita
These messages are not reporting a real error, just the fact that the
firmware knows about more flags than the driver.
Currently these messages are presented to the user during boot if there
is no bootsplash covering the console, even when booting the kernel with
"quiet".
Demoting it to the warn level helps having a clean boot process.
Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
---
v2 changes:
- Set to warn level instead of info
v3 changes:
- Fix commit message typo
drivers/net/wireless/intel/iwlwifi/iwl-drv.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
index be466a074c1d..c98a254bbd4d 100644
--- a/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
+++ b/drivers/net/wireless/intel/iwlwifi/iwl-drv.c
@@ -461,9 +461,9 @@ static int iwl_set_ucode_api_flags(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_API, 32)) {
- IWL_ERR(drv,
- "api flags index %d larger than supported by driver\n",
- api_index);
+ IWL_WARN(drv,
+ "api flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
@@ -485,9 +485,9 @@ static int iwl_set_ucode_capabilities(struct iwl_drv *drv, const u8 *data,
int i;
if (api_index >= DIV_ROUND_UP(NUM_IWL_UCODE_TLV_CAPA, 32)) {
- IWL_ERR(drv,
- "capa flags index %d larger than supported by driver\n",
- api_index);
+ IWL_WARN(drv,
+ "capa flags index %d larger than supported by driver\n",
+ api_index);
/* don't return an error so we can load FW that has more bits */
return 0;
}
--
2.13.2
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3] iwlwifi: Demote messages about fw flags size to info
2017-08-03 14:47 ` [PATCH v3] " João Paulo Rechi Vita
@ 2017-08-08 8:21 ` Coelho, Luciano
0 siblings, 0 replies; 8+ messages in thread
From: Coelho, Luciano @ 2017-08-08 8:21 UTC (permalink / raw)
To: linuxwifi, kvalo@codeaurora.org, jprvita@gmail.com,
Berg, Johannes, Grumbach, Emmanuel
Cc: linux-wireless@vger.kernel.org, linux@endlessm.com,
netdev@vger.kernel.org, jprvita@endlessm.com,
linux-kernel@vger.kernel.org
On Thu, 2017-08-03 at 07:47 -0700, João Paulo Rechi Vita wrote:
> These messages are not reporting a real error, just the fact that the
> firmware knows about more flags than the driver.
>
> Currently these messages are presented to the user during boot if there
> is no bootsplash covering the console, even when booting the kernel with
> "quiet".
>
> Demoting it to the warn level helps having a clean boot process.
>
> Signed-off-by: João Paulo Rechi Vita <jprvita@endlessm.com>
> ---
>
> v2 changes:
> - Set to warn level instead of info
>
> v3 changes:
> - Fix commit message typo
Thanks, João Paulo! I pushed this to our internal tree and it will
eventually reach the mainline following our normal upstreaming process.
--
Cheers,
Luca.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-08-08 8:21 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-21 14:51 [PATCH] iwlwifi: Demote messages about fw flags size to info João Paulo Rechi Vita
2017-07-24 11:01 ` Coelho, Luciano
2017-08-01 22:58 ` João Paulo Rechi Vita
2017-08-02 4:46 ` Luca Coelho
2017-08-03 14:30 ` [PATCH v2] " João Paulo Rechi Vita
2017-08-03 14:36 ` David Laight
2017-08-03 14:47 ` [PATCH v3] " João Paulo Rechi Vita
2017-08-08 8:21 ` Coelho, Luciano
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).