From: claudio Date: Tue, 14 Feb 2023 15:33:46 +0000 (+0000) Subject: No longer wait for the RTR process to finish the config reload before X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=fd932e237e7dfbcd11813a6cc7149a6f9c507599;p=openbsd No longer wait for the RTR process to finish the config reload before sending the IMSG_RECONF_DONE message to the RDE. The RDE does not depend on the RTR config reload (in contrast to the SE). The ROA / ASPA reload is async from the RDE config reload. OK tb@ --- diff --git a/usr.sbin/bgpd/bgpd.c b/usr.sbin/bgpd/bgpd.c index 5e4dbcd0a37..b1f5c0e081f 100644 --- a/usr.sbin/bgpd/bgpd.c +++ b/usr.sbin/bgpd/bgpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bgpd.c,v 1.256 2023/01/20 10:30:41 claudio Exp $ */ +/* $OpenBSD: bgpd.c,v 1.257 2023/02/14 15:33:46 claudio Exp $ */ /* * Copyright (c) 2003, 2004 Henning Brauer @@ -984,9 +984,9 @@ dispatch_imsg(struct imsgbuf *ibuf, int idx, struct bgpd_config *conf) break; } if (idx == PFD_PIPE_SESSION) { + /* RDE and RTR engine can reload concurrently */ imsg_compose(ibuf_rtr, IMSG_RECONF_DONE, 0, 0, -1, NULL, 0); - } else if (idx == PFD_PIPE_RTR) { imsg_compose(ibuf_rde, IMSG_RECONF_DONE, 0, 0, -1, NULL, 0);