move log levels to netifd.h
[project/netifd.git] / interface.c
index 0a2afd0..7837274 100644 (file)
@@ -215,6 +215,7 @@ interface_cleanup(struct interface *iface)
        interface_clear_errors(iface);
        if (iface->main_dev.dev)
                device_remove_user(&iface->main_dev);
+       iface->l3_dev = &iface->main_dev;
        interface_set_proto_state(iface, NULL);
 }
 
@@ -278,7 +279,9 @@ interface_proto_cb(struct interface_proto_state *state, enum interface_proto_eve
                system_flush_routes();
                mark_interface_down(iface);
                interface_handle_config_change(iface);
-               if (iface->autostart)
+               if (iface->l3_dev->dev)
+                       device_release(iface->l3_dev);
+               if (iface->autostart && iface->available)
                        __interface_set_up(iface);
                break;
        case IFPEV_LINK_LOST: