From: Maria Matejka Date: Sun, 21 Nov 2021 11:06:19 +0000 (+0100) Subject: BGP: End route refresh before another starts X-Git-Tag: 3.0-alpha0~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=44dbedbe3fa77a16ea7d5736f07e65d9e2c0b165;p=thirdparty%2Fbird.git BGP: End route refresh before another starts --- diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index aac1f45c1..b825f778f 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -971,6 +971,9 @@ bgp_refresh_begin(struct bgp_channel *c) if (c->load_state == BFS_LOADING) { log(L_WARN "%s: BEGIN-OF-RR received before END-OF-RIB, ignoring", p->p.name); return; } + if (c->load_state == BFS_REFRESHING) + channel_refresh_end(&c->c); + c->load_state = BFS_REFRESHING; channel_refresh_begin(&c->c); }