提交 9be6dd65 编写于 作者: A Andrei Warkentin 提交者: David S. Miller

Bridge: Always send NETDEV_CHANGEADDR up on br MAC change.

This ensures the neighbor entries associated with the bridge
dev are flushed, also invalidating the associated cached L2 headers.

This means we br_add_if/br_del_if ports to implement hand-over and
not wind up with bridge packets going out with stale MAC.

This means we can also change MAC of port device and also not wind
up with bridge packets going out with stale MAC.

This builds on Stephen Hemminger's patch, also handling the br_del_if
case and the port MAC change case.

Cc: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: NAndrei Warkentin <andreiw@motorola.com>
Acked-by: NStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 8028837d
...@@ -417,6 +417,7 @@ int br_add_if(struct net_bridge *br, struct net_device *dev) ...@@ -417,6 +417,7 @@ int br_add_if(struct net_bridge *br, struct net_device *dev)
int br_del_if(struct net_bridge *br, struct net_device *dev) int br_del_if(struct net_bridge *br, struct net_device *dev)
{ {
struct net_bridge_port *p; struct net_bridge_port *p;
bool changed_addr;
p = br_port_get_rtnl(dev); p = br_port_get_rtnl(dev);
if (!p || p->br != br) if (!p || p->br != br)
...@@ -425,9 +426,12 @@ int br_del_if(struct net_bridge *br, struct net_device *dev) ...@@ -425,9 +426,12 @@ int br_del_if(struct net_bridge *br, struct net_device *dev)
del_nbp(p); del_nbp(p);
spin_lock_bh(&br->lock); spin_lock_bh(&br->lock);
br_stp_recalculate_bridge_id(br); changed_addr = br_stp_recalculate_bridge_id(br);
spin_unlock_bh(&br->lock); spin_unlock_bh(&br->lock);
if (changed_addr)
call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
netdev_update_features(br->dev); netdev_update_features(br->dev);
return 0; return 0;
......
...@@ -34,6 +34,7 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v ...@@ -34,6 +34,7 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
struct net_device *dev = ptr; struct net_device *dev = ptr;
struct net_bridge_port *p; struct net_bridge_port *p;
struct net_bridge *br; struct net_bridge *br;
bool changed_addr;
int err; int err;
/* register of bridge completed, add sysfs entries */ /* register of bridge completed, add sysfs entries */
...@@ -57,8 +58,12 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v ...@@ -57,8 +58,12 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
case NETDEV_CHANGEADDR: case NETDEV_CHANGEADDR:
spin_lock_bh(&br->lock); spin_lock_bh(&br->lock);
br_fdb_changeaddr(p, dev->dev_addr); br_fdb_changeaddr(p, dev->dev_addr);
br_stp_recalculate_bridge_id(br); changed_addr = br_stp_recalculate_bridge_id(br);
spin_unlock_bh(&br->lock); spin_unlock_bh(&br->lock);
if (changed_addr)
call_netdevice_notifiers(NETDEV_CHANGEADDR, br->dev);
break; break;
case NETDEV_CHANGE: case NETDEV_CHANGE:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册