Commit 2c06f076 authored by Stephen Hemminger's avatar Stephen Hemminger

[VLAN]: Mirror real devices carrier and hotplug state.

Signed-off-by: default avatarStephen Hemminger <shemminger@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@redhat.com>
parent ea130a63
...@@ -69,6 +69,10 @@ static struct packet_type vlan_packet_type = { ...@@ -69,6 +69,10 @@ static struct packet_type vlan_packet_type = {
.func = vlan_skb_recv, /* VLAN receive method */ .func = vlan_skb_recv, /* VLAN receive method */
}; };
/* Bits of netdev state that are propogated from real device to virtual */
#define VLAN_LINK_STATE_MASK \
((1<<__LINK_STATE_PRESENT)|(1<<__LINK_STATE_NOCARRIER))
/* End of global variables definitions. */ /* End of global variables definitions. */
/* /*
...@@ -472,6 +476,8 @@ static struct net_device *register_vlan_device(const char *eth_IF_name, ...@@ -472,6 +476,8 @@ static struct net_device *register_vlan_device(const char *eth_IF_name,
new_dev->flags = real_dev->flags; new_dev->flags = real_dev->flags;
new_dev->flags &= ~IFF_UP; new_dev->flags &= ~IFF_UP;
new_dev->state = real_dev->state & VLAN_LINK_STATE_MASK;
/* need 4 bytes for extra VLAN header info, /* need 4 bytes for extra VLAN header info,
* hope the underlying device can handle it. * hope the underlying device can handle it.
*/ */
...@@ -598,9 +604,20 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event, ...@@ -598,9 +604,20 @@ static int vlan_device_event(struct notifier_block *unused, unsigned long event,
*/ */
switch (event) { switch (event) {
case NETDEV_CHANGEADDR: case NETDEV_CHANGE:
case NETDEV_GOING_DOWN: /* Propogate real device state to vlan devices */
/* Ignore for now */ flgs = dev->state & VLAN_LINK_STATE_MASK;
for (i = 0; i < VLAN_GROUP_ARRAY_LEN; i++) {
vlandev = grp->vlan_devices[i];
if (!vlandev)
continue;
if ((vlandev->state & VLAN_LINK_STATE_MASK) != flgs) {
vlandev->state = (vlandev->state &~ VLAN_LINK_STATE_MASK)
| flgs;
netdev_state_change(vlandev);
}
}
break; break;
case NETDEV_DOWN: case NETDEV_DOWN:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment