All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 net] net: phy: phylink: fix uninitialized variable in phylink_get_mac_state
@ 2019-02-26  7:25 Heiner Kallweit
  2019-02-26  8:43 ` Russell King - ARM Linux admin
  0 siblings, 1 reply; 3+ messages in thread
From: Heiner Kallweit @ 2019-02-26  7:25 UTC (permalink / raw)
  To: Russell King - ARM Linux, David Miller, Andrew Lunn, Florian Fainelli
  Cc: netdev

When debugging an issue I found implausible values in state->pause.
Reason in that state->pause isn't initialized and later only single
bits are changed. Also the struct itself isn't initialized in
phylink_resolve(). So better initialize state->pause.

v2:
- use right function name in subject

Fixes: 9525ae83959b ("phylink: add phylink infrastructure")
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
---
 drivers/net/phy/phylink.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
index 59d175a5b..a9954c205 100644
--- a/drivers/net/phy/phylink.c
+++ b/drivers/net/phy/phylink.c
@@ -324,6 +324,7 @@ static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *
 	linkmode_zero(state->lp_advertising);
 	state->interface = pl->link_config.interface;
 	state->an_enabled = pl->link_config.an_enabled;
+	state->pause = MLO_PAUSE_NONE;
 	state->link = 1;
 
 	return pl->ops->mac_link_state(ndev, state);
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH v2 net] net: phy: phylink: fix uninitialized variable in phylink_get_mac_state
  2019-02-26  7:25 [PATCH v2 net] net: phy: phylink: fix uninitialized variable in phylink_get_mac_state Heiner Kallweit
@ 2019-02-26  8:43 ` Russell King - ARM Linux admin
  2019-02-26 18:08   ` Heiner Kallweit
  0 siblings, 1 reply; 3+ messages in thread
From: Russell King - ARM Linux admin @ 2019-02-26  8:43 UTC (permalink / raw)
  To: Heiner Kallweit; +Cc: David Miller, Andrew Lunn, Florian Fainelli, netdev

On Tue, Feb 26, 2019 at 08:25:41AM +0100, Heiner Kallweit wrote:
> When debugging an issue I found implausible values in state->pause.
> Reason in that state->pause isn't initialized and later only single
> bits are changed. Also the struct itself isn't initialized in
> phylink_resolve(). So better initialize state->pause.

mac_link_state() is expected to always set this, but this is safer.

Maybe also set state->speed to SPEED_UNKNOWN, state->duplex to
DUPLEX_UNKNOWN and state->an_complete to zero?

> 
> v2:
> - use right function name in subject
> 
> Fixes: 9525ae83959b ("phylink: add phylink infrastructure")
> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
> ---
>  drivers/net/phy/phylink.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
> index 59d175a5b..a9954c205 100644
> --- a/drivers/net/phy/phylink.c
> +++ b/drivers/net/phy/phylink.c
> @@ -324,6 +324,7 @@ static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *
>  	linkmode_zero(state->lp_advertising);
>  	state->interface = pl->link_config.interface;
>  	state->an_enabled = pl->link_config.an_enabled;
> +	state->pause = MLO_PAUSE_NONE;
>  	state->link = 1;
>  
>  	return pl->ops->mac_link_state(ndev, state);
> -- 
> 2.20.1
> 
> 

-- 
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTC broadband for 0.8mile line in suburbia: sync at 12.1Mbps down 622kbps up
According to speedtest.net: 11.9Mbps down 500kbps up

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2 net] net: phy: phylink: fix uninitialized variable in phylink_get_mac_state
  2019-02-26  8:43 ` Russell King - ARM Linux admin
@ 2019-02-26 18:08   ` Heiner Kallweit
  0 siblings, 0 replies; 3+ messages in thread
From: Heiner Kallweit @ 2019-02-26 18:08 UTC (permalink / raw)
  To: Russell King - ARM Linux admin
  Cc: David Miller, Andrew Lunn, Florian Fainelli, netdev

On 26.02.2019 09:43, Russell King - ARM Linux admin wrote:
> On Tue, Feb 26, 2019 at 08:25:41AM +0100, Heiner Kallweit wrote:
>> When debugging an issue I found implausible values in state->pause.
>> Reason in that state->pause isn't initialized and later only single
>> bits are changed. Also the struct itself isn't initialized in
>> phylink_resolve(). So better initialize state->pause.
> 
> mac_link_state() is expected to always set this, but this is safer.
> 
I've seen cases where mac_link_state() just initializes the relevant
bits. Therefore there's no functional problem, but it's not nice
(and disturbs in debug output) if all other bits have a random value.

> Maybe also set state->speed to SPEED_UNKNOWN, state->duplex to
> DUPLEX_UNKNOWN and state->an_complete to zero?
> 
OK. Will include this in a v3.

>>
>> v2:
>> - use right function name in subject
>>
>> Fixes: 9525ae83959b ("phylink: add phylink infrastructure")
>> Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
>> ---
>>  drivers/net/phy/phylink.c | 1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/net/phy/phylink.c b/drivers/net/phy/phylink.c
>> index 59d175a5b..a9954c205 100644
>> --- a/drivers/net/phy/phylink.c
>> +++ b/drivers/net/phy/phylink.c
>> @@ -324,6 +324,7 @@ static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *
>>  	linkmode_zero(state->lp_advertising);
>>  	state->interface = pl->link_config.interface;
>>  	state->an_enabled = pl->link_config.an_enabled;
>> +	state->pause = MLO_PAUSE_NONE;
>>  	state->link = 1;
>>  
>>  	return pl->ops->mac_link_state(ndev, state);
>> -- 
>> 2.20.1
>>
>>
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-26 18:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-26  7:25 [PATCH v2 net] net: phy: phylink: fix uninitialized variable in phylink_get_mac_state Heiner Kallweit
2019-02-26  8:43 ` Russell King - ARM Linux admin
2019-02-26 18:08   ` Heiner Kallweit

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.