From: Felix Fietkau Date: Wed, 5 Oct 2011 14:03:16 +0000 (+0200) Subject: add better debug messages for interface create/remove/update X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=314b33c511f8aa53c9fb97c6a9ad9d410f06af26 add better debug messages for interface create/remove/update --- diff --git a/config.c b/config.c index cb79b2a..1ca0256 100644 --- a/config.c +++ b/config.c @@ -148,8 +148,6 @@ config_parse_interface(struct uci_section *s) const char *type; struct blob_attr *config; - D(INTERFACE, "Create interface '%s'\n", s->e.name); - blob_buf_init(&b, 0); type = uci_lookup_option_string(uci_ctx, s, "type"); diff --git a/interface.c b/interface.c index 59b7ea2..73da2ab 100644 --- a/interface.c +++ b/interface.c @@ -420,11 +420,14 @@ interface_update(struct vlist_tree *tree, struct vlist_node *node_new, struct interface *if_old = container_of(node_old, struct interface, node); struct interface *if_new = container_of(node_new, struct interface, node); - if (node_old && node_new) + if (node_old && node_new) { + D(INTERFACE, "Update interface '%s'\n", if_new->name); interface_change_config(if_old, if_new); - else if (node_old) + } else if (node_old) { + D(INTERFACE, "Remove interface '%s'\n", if_old->name); set_config_state(if_old, IFC_REMOVE); - else if (node_new) { + } else if (node_new) { + D(INTERFACE, "Create interface '%s'\n", if_new->name); interface_claim_device(if_new); proto_init_interface(if_new, if_new->config); interface_ip_init(if_new);