From 5f9f3c8de8d5d9f83a437661a98e5cc2453705f9 Mon Sep 17 00:00:00 2001 From: Dave Barach Date: Fri, 22 Nov 2019 17:42:58 -0500 Subject: vlib: autogenerate before constraints If an arc declaration includes '.last_in_arc = "some-node"', assume that folks mean it and add explicit ordering constraints. Fix the "arp" arc declaration which claimed that the arc ends at arp-disabled, but the arc really ends at error-drop. Type: fix Signed-off-by: Dave Barach Change-Id: Ie2de1fb30091671cbc7c62770903a2e05987f141 --- src/vnet/ethernet/arp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/ethernet') diff --git a/src/vnet/ethernet/arp.c b/src/vnet/ethernet/arp.c index a42cfda0d3f..ca9a21cbbd1 100644 --- a/src/vnet/ethernet/arp.c +++ b/src/vnet/ethernet/arp.c @@ -1711,7 +1711,7 @@ VNET_FEATURE_ARC_INIT (arp_feat, static) = { .arc_name = "arp", .start_nodes = VNET_FEATURES ("arp-input"), - .last_in_arc = "arp-disabled", + .last_in_arc = "error-drop", .arc_index_ptr = ðernet_arp_main.feature_arc_index, }; -- cgit 1.2.3-korg