]> git.baikalelectronics.ru Git - kernel.git/commit
net: phy: phylink: fix uninitialized variable in phylink_get_mac_state
authorHeiner Kallweit <hkallweit1@gmail.com>
Tue, 26 Feb 2019 18:29:22 +0000 (19:29 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 1 Mar 2019 19:30:48 +0000 (11:30 -0800)
commit7f56fb5d72f93d6d2b3cf86d26c408bef9f194af
treecfce242a7c40449b8fb5eff7bf9cbbbc4ede389c
parentb268adb99255d363b0d1fd42538f0b5740ac3c8e
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: 81485403f4ec ("phylink: add phylink infrastructure")
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phylink.c