udev: link_config - ignore errors due to missing MAC address

Otherwis, we get misleading error messages on links with MACs.

Reported by Leonid Isaev.
This commit is contained in:
Tom Gundersen 2014-07-07 14:50:16 +02:00
parent 3dde3f8197
commit a669ea9860

View file

@ -383,7 +383,9 @@ int link_config_apply(link_config_ctx *ctx, link_config *config, struct udev_dev
case MACPOLICY_PERSISTENT:
if (mac_is_random(device)) {
r = get_mac(device, false, &generated_mac);
if (r < 0)
if (r == -ENOENT)
break;
else if (r < 0)
return r;
mac = &generated_mac;
}
@ -391,7 +393,9 @@ int link_config_apply(link_config_ctx *ctx, link_config *config, struct udev_dev
case MACPOLICY_RANDOM:
if (!mac_is_random(device)) {
r = get_mac(device, true, &generated_mac);
if (r < 0)
if (r == -ENOENT)
break;
else if (r < 0)
return r;
mac = &generated_mac;
}