From: Mark Stapp Date: Thu, 21 Feb 2019 21:15:14 +0000 (-0500) Subject: zebra: unlock route-node in dplane results handler X-Git-Tag: 7.1_pulled~221^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F3847%2Fhead;p=mirror%2Ffrr.git zebra: unlock route-node in dplane results handler Unlock the route-node struct we look up while processing async dataplane results. Signed-off-by: Mark Stapp --- diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 8afcc2b685..b71bf77df2 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -1879,6 +1879,8 @@ static void rib_process_result(struct zebra_dplane_ctx *ctx) goto done; } + route_unlock_node(rn); + srcdest_rnode_prefixes(rn, &dest_pfx, &src_pfx); op = dplane_ctx_get_op(ctx);