From 41a54f6a0b16b36f55461f0ce0a2303081a4fb6c Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Thu, 5 Aug 2021 15:06:36 +0200 Subject: ip: fix ip punt redirect cli MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - restore fib paths support for ip4 - initialize payload_proto to the relevant default protocol so that 'via ' paths are supported - fix 'rx all' - fix temp path vector mem leak Type: fix Change-Id: I564d88dc4dce86884ff6791af69974e6d70ff7ca Signed-off-by: Benoît Ganne --- src/vnet/ip/ip6_punt_drop.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/vnet/ip/ip6_punt_drop.c') diff --git a/src/vnet/ip/ip6_punt_drop.c b/src/vnet/ip/ip6_punt_drop.c index 107703a7b6d..31f5d37bf02 100644 --- a/src/vnet/ip/ip6_punt_drop.c +++ b/src/vnet/ip/ip6_punt_drop.c @@ -351,7 +351,7 @@ ip6_punt_redirect_cmd (vlib_main_t * vm, { unformat_input_t _line_input, *line_input = &_line_input; fib_route_path_t *rpaths = NULL, rpath; - dpo_proto_t payload_proto; + dpo_proto_t payload_proto = DPO_PROTO_IP6; clib_error_t *error = 0; u32 rx_sw_if_index = ~0; vnet_main_t *vnm; @@ -370,7 +370,7 @@ ip6_punt_redirect_cmd (vlib_main_t * vm, else if (unformat (line_input, "add")) is_add = 1; else if (unformat (line_input, "rx all")) - rx_sw_if_index = ~0; + rx_sw_if_index = 0; else if (unformat (line_input, "rx %U", unformat_vnet_sw_interface, vnm, &rx_sw_if_index)) ; @@ -401,6 +401,7 @@ ip6_punt_redirect_cmd (vlib_main_t * vm, } done: + vec_free (rpaths); unformat_free (line_input); return (error); } -- cgit 1.2.3-korg