From: Renato Westphal Date: Thu, 10 Sep 2020 01:31:59 +0000 (-0300) Subject: pbrd: add frr-vrf to the list of implemented yang modules X-Git-Tag: frr-7.5~24^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F7071%2Fhead;p=mirror%2Ffrr.git pbrd: add frr-vrf to the list of implemented yang modules PR #6376 introduced a VRF leafref in the frr-interface YANG module. That change exposed a bug in the northbound layer that is causing pbrd to crash under certain circumstances. Even though pbrd wasn't converted to the new northbound model yet, make it implement the frr-vrf module in order to work around this problem. This is a temporary fix until a better solution is available. Signed-off-by: Renato Westphal --- diff --git a/pbrd/pbr_main.c b/pbrd/pbr_main.c index 9a9edd79c6..0711c66d4a 100644 --- a/pbrd/pbr_main.c +++ b/pbrd/pbr_main.c @@ -117,6 +117,7 @@ struct quagga_signal_t pbr_signals[] = { static const struct frr_yang_module_info *const pbrd_yang_modules[] = { &frr_filter_info, &frr_interface_info, + &frr_vrf_info, }; FRR_DAEMON_INFO(pbrd, PBR, .vty_port = PBR_VTY_PORT,