alias: use layer 3 device instead of main device
authorSteven Barth <steven@midlink.org>
Wed, 16 Jan 2013 13:56:10 +0000 (14:56 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 16 Jan 2013 15:06:07 +0000 (16:06 +0100)
alias.c
interface.c

diff --git a/alias.c b/alias.c
index 14b4c8f..e77deff 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -126,7 +126,7 @@ static int alias_check_state(struct device *dev)
 
        iface = vlist_find(&interfaces, alias->name, iface, node);
        if (iface && iface->state == IFS_UP)
 
        iface = vlist_find(&interfaces, alias->name, iface, node);
        if (iface && iface->state == IFS_UP)
-               ndev = iface->main_dev.dev;
+               ndev = iface->l3_dev.dev;
 
        __alias_notify_device(alias, ndev);
 
 
        __alias_notify_device(alias, ndev);
 
index 352c734..591c0f5 100644 (file)
@@ -163,7 +163,7 @@ interface_event(struct interface *iface, enum interface_event ev)
 
        switch (ev) {
        case IFEV_UP:
 
        switch (ev) {
        case IFEV_UP:
-               adev = iface->main_dev.dev;
+               adev = iface->l3_dev.dev;
                /* fall through */
        case IFEV_DOWN:
                alias_notify_device(iface->name, adev);
                /* fall through */
        case IFEV_DOWN:
                alias_notify_device(iface->name, adev);