mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 05:04:20 +00:00
net: dsa: split dsa_port's netdev member
The dsa_port structure has a "netdev" member, which can be used for either the master device, or the slave device, depending on its type. It is true that today, CPU port are not exposed to userspace, thus the port's netdev member can be used to point to its master interface. But it is still slightly confusing, so split it into more explicit "master" and "slave" members inside an anonymous union. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2231c43b56
commit
f8b8b1cd5a
9 changed files with 38 additions and 31 deletions
|
@ -130,7 +130,7 @@ static inline struct net_device *dsa_master_find_slave(struct net_device *dev,
|
|||
if (port < 0 || port >= ds->num_ports)
|
||||
return NULL;
|
||||
|
||||
return ds->ports[port].netdev;
|
||||
return ds->ports[port].slave;
|
||||
}
|
||||
|
||||
/* port.c */
|
||||
|
@ -181,7 +181,7 @@ dsa_slave_to_master(const struct net_device *dev)
|
|||
{
|
||||
struct dsa_port *dp = dsa_slave_to_port(dev);
|
||||
|
||||
return dp->cpu_dp->netdev;
|
||||
return dp->cpu_dp->master;
|
||||
}
|
||||
|
||||
/* switch.c */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue