From 4b65ddf42899a8d23126857c5722c8b909212b3e Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Wed, 7 Mar 2018 04:59:18 -0800 Subject: GBP: fix the runs before statement against the ACL node Change-Id: I0ff13962ab6855663b9aec31c95e4a88cc809ff0 Signed-off-by: Neale Ranns --- src/plugins/gbp/gbp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/gbp') diff --git a/src/plugins/gbp/gbp.c b/src/plugins/gbp/gbp.c index 5a21d4fdc79..494970780e9 100644 --- a/src/plugins/gbp/gbp.c +++ b/src/plugins/gbp/gbp.c @@ -726,7 +726,7 @@ VLIB_NODE_FUNCTION_MULTIARCH (gbp_4_node, gbp_4); VNET_FEATURE_INIT (gbp_4_node, static) = { .arc_name = "ip4-unicast", .node_name = "gbp4", - .runs_after = VNET_FEATURES ("acl-plugin-out-ip4-fa"), + .runs_after = VNET_FEATURES ("acl-plugin-in-ip4-fa"), }; VLIB_REGISTER_NODE (gbp_6_node) = { @@ -751,7 +751,7 @@ VLIB_NODE_FUNCTION_MULTIARCH (gbp_6_node, gbp_6); VNET_FEATURE_INIT (gbp_6_node, static) = { .arc_name = "ip6-unicast", .node_name = "gbp6", - .runs_after = VNET_FEATURES ("acl-plugin-out-ip6-fa"), + .runs_after = VNET_FEATURES ("acl-plugin-in-ip6-fa"), }; /* *INDENT-ON* */ -- cgit 1.2.3-korg