From da4929eeb9df138fafcec552dd76c3426052567b Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 7 Jun 2021 15:54:48 +0900 Subject: [PATCH] network: do not drop requests on carrier lost On carrier lost, then all requests which require carrier will not be processed. And they will be processed when the interface gained its carrier again. So, it is not necessary to drop requests here. --- src/network/networkd-link.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/network/networkd-link.c b/src/network/networkd-link.c index 71feb057eb6..d970cd7a155 100644 --- a/src/network/networkd-link.c +++ b/src/network/networkd-link.c @@ -1522,8 +1522,6 @@ static int link_carrier_lost(Link *link) { return r; } - link_drop_requests(link); - r = link_drop_config(link); if (r < 0) return r; -- 2.47.3