]> git.baikalelectronics.ru Git - kernel.git/commit
sfp: fix oops with ethtool -m
authorRussell King <rmk+kernel@armlinux.org.uk>
Tue, 18 Sep 2018 15:48:53 +0000 (16:48 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 19 Sep 2018 03:14:19 +0000 (20:14 -0700)
commitd17834a7a7e244c13a2df08aa9bf66b2d0662df0
treeb99118cda68e3706f3e04970f046160f4e5b8ada
parent7fc86bcb06bfa4372c374b302e67c808b628daf2
sfp: fix oops with ethtool -m

If a network interface is created prior to the SFP socket being
available, ethtool can request module information.  This unfortunately
leads to an oops:

Unable to handle kernel NULL pointer dereference at virtual address 00000008
pgd = (ptrval)
[00000008] *pgd=7c400831, *pte=00000000, *ppte=00000000
Internal error: Oops: 17 [#1] SMP ARM
Modules linked in:
CPU: 0 PID: 1480 Comm: ethtool Not tainted 4.19.0-rc3 #138
Hardware name: Broadcom Northstar Plus SoC
PC is at sfp_get_module_info+0x8/0x10
LR is at dev_ethtool+0x218c/0x2afc

Fix this by not filling in the network device's SFP bus pointer until
SFP is fully bound, thereby avoiding the core calling into the SFP bus
code.

Fixes: 5ab549a339a1 ("sfp: add sfp-bus to bridge between network devices and sfp cages")
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Tested-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/sfp-bus.c