aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/gbp
diff options
context:
space:
mode:
authorNeale Ranns <neale.ranns@cisco.com>2018-03-07 04:59:18 -0800
committerDave Barach <openvpp@barachs.net>2018-03-07 14:11:45 +0000
commit4b65ddf42899a8d23126857c5722c8b909212b3e (patch)
treef2bfb58d418796ec1e63e7e75d01c49124c7f3e8 /src/plugins/gbp
parentef2e584543619e037d735e61f0576658c6764ae6 (diff)
GBP: fix the runs before statement against the ACL node
Change-Id: I0ff13962ab6855663b9aec31c95e4a88cc809ff0 Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'src/plugins/gbp')
-rw-r--r--src/plugins/gbp/gbp.c4
1 files changed, 2 insertions, 2 deletions
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* */