diff options
author | Guenter Roeck <linux@roeck-us.net> | 2014-10-17 15:30:58 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-10-17 23:52:08 -0400 |
commit | b184e497f7fe2895b2175859e0cb21ae5d531555 (patch) | |
tree | ea1d277d73e4388820caf1fab98f8d6f53f993dc /drivers/net/dsa/mv88e6060.c | |
parent | 643566d4b47e2956110e79c0e6f65db9b9ea42c6 (diff) |
dsa: Fix conversion from host device to mii bus
Commit b4d2394d01bc ("dsa: Replace mii_bus with a generic host device")
replaces mii_bus with a generic host_dev, and introduces
dsa_host_dev_to_mii_bus() to support conversion from host_dev to mii_bus.
However, in some cases it uses to_mii_bus to perform that conversion.
Since host_dev is not the phy bus device but typically a platform device,
this fails and results in a crash with the affected drivers.
BUG: unable to handle kernel NULL pointer dereference at (null)
IP: [<ffffffff81781d35>] __mutex_lock_slowpath+0x75/0x100
PGD 406783067 PUD 406784067 PMD 0
Oops: 0002 [#1] SMP
...
Call Trace:
[<ffffffff810a538b>] ? pick_next_task_fair+0x61b/0x880
[<ffffffff81781de3>] mutex_lock+0x23/0x37
[<ffffffff81533244>] mdiobus_read+0x34/0x60
[<ffffffff8153b95a>] __mv88e6xxx_reg_read+0x8a/0xa0
[<ffffffff8153b9bc>] mv88e6xxx_reg_read+0x4c/0xa0
Fixes: b4d2394d01bc ("dsa: Replace mii_bus with a generic host device")
Cc: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Acked-by: Alexander Duyck <alexander.h.duyck@redhat.com>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6060.c')
-rw-r--r-- | drivers/net/dsa/mv88e6060.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/drivers/net/dsa/mv88e6060.c b/drivers/net/dsa/mv88e6060.c index 776e965dc9f4..05b0ca3bf71d 100644 --- a/drivers/net/dsa/mv88e6060.c +++ b/drivers/net/dsa/mv88e6060.c | |||
@@ -21,8 +21,12 @@ | |||
21 | 21 | ||
22 | static int reg_read(struct dsa_switch *ds, int addr, int reg) | 22 | static int reg_read(struct dsa_switch *ds, int addr, int reg) |
23 | { | 23 | { |
24 | return mdiobus_read(to_mii_bus(ds->master_dev), | 24 | struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev); |
25 | ds->pd->sw_addr + addr, reg); | 25 | |
26 | if (bus == NULL) | ||
27 | return -EINVAL; | ||
28 | |||
29 | return mdiobus_read(bus, ds->pd->sw_addr + addr, reg); | ||
26 | } | 30 | } |
27 | 31 | ||
28 | #define REG_READ(addr, reg) \ | 32 | #define REG_READ(addr, reg) \ |
@@ -38,8 +42,12 @@ static int reg_read(struct dsa_switch *ds, int addr, int reg) | |||
38 | 42 | ||
39 | static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val) | 43 | static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val) |
40 | { | 44 | { |
41 | return mdiobus_write(to_mii_bus(ds->master_dev), | 45 | struct mii_bus *bus = dsa_host_dev_to_mii_bus(ds->master_dev); |
42 | ds->pd->sw_addr + addr, reg, val); | 46 | |
47 | if (bus == NULL) | ||
48 | return -EINVAL; | ||
49 | |||
50 | return mdiobus_write(bus, ds->pd->sw_addr + addr, reg, val); | ||
43 | } | 51 | } |
44 | 52 | ||
45 | #define REG_WRITE(addr, reg, val) \ | 53 | #define REG_WRITE(addr, reg, val) \ |