networkd: link - improve link tracking logging

This commit is contained in:
Tom Gundersen 2014-07-03 21:35:03 +02:00
parent bc4bc52bc3
commit 393c0c5e64

View file

@ -2140,7 +2140,7 @@ int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message, void *use
r = address_new_dynamic(&address);
if (r < 0)
return 0;
return r;
r = sd_rtnl_message_addr_get_family(message, &address->family);
if (r < 0 || !IN_SET(address->family, AF_INET, AF_INET6)) {
@ -2205,6 +2205,9 @@ int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message, void *use
if (!address_dropped)
log_debug_link(link, "added address: %s/%u", buf,
address->prefixlen);
else
log_debug_link(link, "updated address: %s/%u", buf,
address->prefixlen);
LIST_PREPEND(addresses, link->addresses, address);
address = NULL;
@ -2218,7 +2221,9 @@ int link_rtnl_process_address(sd_rtnl *rtnl, sd_rtnl_message *message, void *use
address->prefixlen);
link_save(link);
}
} else
log_warning_link(link, "removing non-existent address: %s/%u",
buf, address->prefixlen);
break;
default: