net: dsa: b53: use dsa_port's bridge pointer
Now that DSA exposes the bridge device pointer to which a port belongs, use it when programming the port based VLANs and thus remove the cache. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
922754a48a
commit
ddd3a0c840
@ -1308,7 +1308,7 @@ int b53_fdb_dump(struct dsa_switch *ds, int port,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(b53_fdb_dump);
|
EXPORT_SYMBOL(b53_fdb_dump);
|
||||||
|
|
||||||
int b53_br_join(struct dsa_switch *ds, int port, struct net_device *bridge)
|
int b53_br_join(struct dsa_switch *ds, int port, struct net_device *br)
|
||||||
{
|
{
|
||||||
struct b53_device *dev = ds->priv;
|
struct b53_device *dev = ds->priv;
|
||||||
s8 cpu_port = ds->dst->cpu_port;
|
s8 cpu_port = ds->dst->cpu_port;
|
||||||
@ -1326,11 +1326,10 @@ int b53_br_join(struct dsa_switch *ds, int port, struct net_device *bridge)
|
|||||||
b53_write16(dev, B53_VLAN_PAGE, B53_JOIN_ALL_VLAN_EN, reg);
|
b53_write16(dev, B53_VLAN_PAGE, B53_JOIN_ALL_VLAN_EN, reg);
|
||||||
}
|
}
|
||||||
|
|
||||||
dev->ports[port].bridge_dev = bridge;
|
|
||||||
b53_read16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(port), &pvlan);
|
b53_read16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(port), &pvlan);
|
||||||
|
|
||||||
b53_for_each_port(dev, i) {
|
b53_for_each_port(dev, i) {
|
||||||
if (dev->ports[i].bridge_dev != bridge)
|
if (ds->ports[i].bridge_dev != br)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Add this local port to the remote port VLAN control
|
/* Add this local port to the remote port VLAN control
|
||||||
@ -1357,7 +1356,6 @@ EXPORT_SYMBOL(b53_br_join);
|
|||||||
void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)
|
void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)
|
||||||
{
|
{
|
||||||
struct b53_device *dev = ds->priv;
|
struct b53_device *dev = ds->priv;
|
||||||
struct net_device *bridge = dev->ports[port].bridge_dev;
|
|
||||||
struct b53_vlan *vl = &dev->vlans[0];
|
struct b53_vlan *vl = &dev->vlans[0];
|
||||||
s8 cpu_port = ds->dst->cpu_port;
|
s8 cpu_port = ds->dst->cpu_port;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
@ -1367,7 +1365,7 @@ void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)
|
|||||||
|
|
||||||
b53_for_each_port(dev, i) {
|
b53_for_each_port(dev, i) {
|
||||||
/* Don't touch the remaining ports */
|
/* Don't touch the remaining ports */
|
||||||
if (dev->ports[i].bridge_dev != bridge)
|
if (ds->ports[i].bridge_dev != br)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
b53_read16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(i), ®);
|
b53_read16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(i), ®);
|
||||||
@ -1382,7 +1380,6 @@ void b53_br_leave(struct dsa_switch *ds, int port, struct net_device *br)
|
|||||||
|
|
||||||
b53_write16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(port), pvlan);
|
b53_write16(dev, B53_PVLAN_PAGE, B53_PVLAN_PORT_MASK(port), pvlan);
|
||||||
dev->ports[port].vlan_ctl_mask = pvlan;
|
dev->ports[port].vlan_ctl_mask = pvlan;
|
||||||
dev->ports[port].bridge_dev = NULL;
|
|
||||||
|
|
||||||
if (is5325(dev) || is5365(dev))
|
if (is5325(dev) || is5365(dev))
|
||||||
pvid = 1;
|
pvid = 1;
|
||||||
|
@ -70,7 +70,6 @@ enum {
|
|||||||
|
|
||||||
struct b53_port {
|
struct b53_port {
|
||||||
u16 vlan_ctl_mask;
|
u16 vlan_ctl_mask;
|
||||||
struct net_device *bridge_dev;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct b53_vlan {
|
struct b53_vlan {
|
||||||
|
Loading…
Reference in New Issue
Block a user