From: Hans Dedecker Date: Tue, 26 May 2015 12:41:47 +0000 (+0200) Subject: netifd: Add old style vlan devices to device list X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=3653d721dad44c5a63790a3fd67e819dfb1dc428;hp=6b74746cbf12d5b8421f68e99a4139abacec924b netifd: Add old style vlan devices to device list Just like other device types old vlan style devices are added to the device list which means they're displayed when the device list is displayed via ubus. Additionally global device setting config like default packet steering behavior is now also applied for old style vlan devices when doing a network reload. Signed-off-by: Hans Dedecker --- diff --git a/vlan.c b/vlan.c index 354e12f..3d0a4cf 100644 --- a/vlan.c +++ b/vlan.c @@ -130,7 +130,7 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create) vldev->id = id; vlan_dev_set_name(vldev, dev); - device_init_virtual(&vldev->dev, &vlan_type, NULL); + device_init(&vldev->dev, &vlan_type, vldev->dev.ifname); vldev->dev.default_config = true; vldev->set_state = vldev->dev.set_state;