From 3e0c78ef8a8fb80f52a36dab99d76a5913281e4c Mon Sep 17 00:00:00 2001 From: Paul Jakma Date: Mon, 6 Mar 2006 18:06:53 +0000 Subject: [bgpd] Start off FSM again once clearing finishes. 2006-03-03 Paul Jakma * bgp_route.c: (bgp_clear_node_complete) Doh. When clearing is complete we need to kick off FSM again. --- bgpd/ChangeLog | 5 +++++ bgpd/bgp_route.c | 3 +++ 2 files changed, 8 insertions(+) (limited to 'bgpd') diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog index b10250aa..0c8c9d6e 100644 --- a/bgpd/ChangeLog +++ b/bgpd/ChangeLog @@ -1,3 +1,8 @@ +2006-03-03 Paul Jakma + + * bgp_route.c: (bgp_clear_node_complete) Doh. When clearing + is complete we need to kick off FSM again. + 2006-02-21 Paul Jakma * bgpd.h: move the clear_node_queue to be peer specific. diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index a73974ff..b49bea98 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -2514,6 +2514,9 @@ bgp_clear_node_complete (struct work_queue *wq) UNSET_FLAG (peer->sflags, PEER_STATUS_CLEARING); peer_unlock (peer); /* bgp_clear_node_complete */ + + /* Tickle FSM to start moving again */ + BGP_EVENT_ADD (peer, BGP_Start); } static void -- cgit v1.2.1