From 551775eaaa9c162c73e15690e4d7580935e9a70a Mon Sep 17 00:00:00 2001 From: Yasuhiro Nakamura Date: Mon, 17 Feb 2020 13:03:38 +0900 Subject: lb: Fix generating illegal key in per-port vip VIP prefix index becomes always 0 when adding a VIP which is already registered different port, causing LB config crash. This change assigns the same VIP prefix index to the same VIP. Ticket: https://jira.fd.io/browse/VPP-1834 Type: fix Signed-off-by: Yasuhiro Nakamura Change-Id: Ib63b3e58db9bd85714d68cd1292aadd0c8580da8 --- src/plugins/lb/lb.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/plugins/lb/lb.c') diff --git a/src/plugins/lb/lb.c b/src/plugins/lb/lb.c index 4dbf134cc4f..2fc38e219a1 100644 --- a/src/plugins/lb/lb.c +++ b/src/plugins/lb/lb.c @@ -906,6 +906,8 @@ static void lb_vip_add_adjacency(lb_main_t *lbm, lb_vip_t *vip, if (!lb_vip_port_find_diff_port(&(vip->prefix), vip->plen, vip->protocol, vip->port, &vip_idx)) { + lb_vip_t *exists_vip = lb_vip_get_by_index(vip_idx); + *vip_prefix_index = exists_vip->vip_prefix_index; return; } -- cgit 1.2.3-korg