From 8147559ff9ea9119b95718238713c8fbaa22e4ca Mon Sep 17 00:00:00 2001 From: "Bin Zhou (bzhou2)" Date: Mon, 21 Jun 2021 11:09:30 -0400 Subject: misc: fix init order to avoid startup warnings Put plugin init order inside plugin instead of in vnet Type: improvement Signed-off-by: Bin Zhou (bzhou2) Change-Id: Icbacdb3f1cb4ac9d74e3f78458e8bc333793b4d6 --- src/vnet/dpo/dvr_dpo.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/vnet/dpo') diff --git a/src/vnet/dpo/dvr_dpo.c b/src/vnet/dpo/dvr_dpo.c index 533ce4b39f3..5db9c803145 100644 --- a/src/vnet/dpo/dvr_dpo.c +++ b/src/vnet/dpo/dvr_dpo.c @@ -632,13 +632,10 @@ VNET_FEATURE_INIT (ip4_dvr_reinject_feat_node, static) = { .arc_name = "ip4-output", .node_name = "ip4-dvr-reinject", - .runs_after = VNET_FEATURES ("nat44-in2out-output", - "acl-plugin-out-ip4-fa"), }; VNET_FEATURE_INIT (ip6_dvr_reinject_feat_node, static) = { .arc_name = "ip6-output", .node_name = "ip6-dvr-reinject", - .runs_after = VNET_FEATURES ("acl-plugin-out-ip6-fa"), }; -- cgit 1.2.3-korg