Skip to content

Commit d25ed41

Browse files
hkallweitdavem330
authored andcommitted
net: phy: phylink: fix uninitialized variable in phylink_get_mac_state
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 and other not yet initialized fields. v2: - use right function name in subject v3: - initialize additional fields Fixes: 9525ae8 ("phylink: add phylink infrastructure") Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 15f3ddf commit d25ed41

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/net/phy/phylink.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ static int phylink_get_mac_state(struct phylink *pl, struct phylink_link_state *
320320
linkmode_zero(state->lp_advertising);
321321
state->interface = pl->link_config.interface;
322322
state->an_enabled = pl->link_config.an_enabled;
323+
state->speed = SPEED_UNKNOWN;
324+
state->duplex = DUPLEX_UNKNOWN;
325+
state->pause = MLO_PAUSE_NONE;
326+
state->an_complete = 0;
323327
state->link = 1;
324328

325329
return pl->ops->mac_link_state(ndev, state);

0 commit comments

Comments
 (0)