diff options
author | Helmut Schaa <helmut.schaa@googlemail.com> | 2014-03-20 16:26:23 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-03-21 16:05:20 +0100 |
commit | 3d317e90f15eec480b23f4dcddb841c292bef690 (patch) | |
tree | 23bd42c83bd676a029fe4536d68de414a606d7c9 /vlan.c | |
parent | 559df99f259e88edaa7e45826a0ff436f2a07d1a (diff) |
netifd: Reload proto on topology change
Introduce a new device event "topology change" that gets signaled
by bridges on adding/removing members.
On "topology changes" the proto handlers are requested to "renew"
which is most useful for DHCP.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
Diffstat (limited to 'vlan.c')
-rw-r--r-- | vlan.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -88,6 +88,10 @@ static void vlan_dev_cb(struct device_user *dep, enum device_event ev) vlan_dev_set_name(vldev, dep->dev); device_broadcast_event(&vldev->dev, ev); break; + case DEV_EVENT_TOPO_CHANGE: + /* Propagate topo changes */ + device_broadcast_event(&vldev->dev, DEV_EVENT_TOPO_CHANGE); + break; default: break; } |