1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

udev: net_setup_link - add a bit more logging

This commit is contained in:
Tom Gundersen 2014-07-03 09:57:27 +02:00
parent ad0774e61e
commit 866ee36822

View File

@ -92,14 +92,20 @@ static int link_config_ctx_connect(link_config_ctx *ctx) {
if (ctx->ethtool_fd == -1) {
r = ethtool_connect(&ctx->ethtool_fd);
if (r < 0)
if (r < 0) {
log_warning("link_config: could not connect to ethtool: %s",
strerror(-r));
return r;
}
}
if (!ctx->rtnl) {
r = sd_rtnl_open(&ctx->rtnl, 0);
if (r < 0)
if (r < 0) {
log_warning("link_config: could not connect to rtnl: %s",
strerror(-r));
return r;
}
}
return 0;