From 7f676aa324cb5498a5f9caaaa3d51ecfe53242e0 Mon Sep 17 00:00:00 2001 From: Susant Sahani Date: Tue, 26 Sep 2017 17:17:32 +0530 Subject: [PATCH] networkd: ndisc Do not stop ndisc client incase of conf error. Now in ndisc_netlink_handler if route or address fails we stop the clients. link_enter_failed->link_stop_clients that is dhcp, ndisc etc. The clients should be keep on running . Fixes #5625 --- src/network/networkd-ndisc.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/network/networkd-ndisc.c b/src/network/networkd-ndisc.c index d52b511bb5..27d3f9c935 100644 --- a/src/network/networkd-ndisc.c +++ b/src/network/networkd-ndisc.c @@ -39,10 +39,8 @@ static int ndisc_netlink_handler(sd_netlink *rtnl, sd_netlink_message *m, void * link->ndisc_messages--; r = sd_netlink_message_get_errno(m); - if (r < 0 && r != -EEXIST) { + if (r < 0 && r != -EEXIST) log_link_error_errno(link, r, "Could not set NDisc route or address: %m"); - link_enter_failed(link); - } if (link->ndisc_messages == 0) { link->ndisc_configured = true; -- 2.25.1