diff options
author | Bin Zhou (bzhou2) <bzhou2@cisco.com> | 2021-06-21 11:09:30 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-07-13 17:16:54 +0000 |
commit | 8147559ff9ea9119b95718238713c8fbaa22e4ca (patch) | |
tree | 7de2e67d94e96706a6ce3165d640dcc81a772d9a /src/vnet/dpo/dvr_dpo.c | |
parent | e3ef3f6aea261c4b1a8d599cc1e76cbe8a4a670f (diff) |
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) <bzhou2@cisco.com>
Change-Id: Icbacdb3f1cb4ac9d74e3f78458e8bc333793b4d6
Diffstat (limited to 'src/vnet/dpo/dvr_dpo.c')
-rw-r--r-- | src/vnet/dpo/dvr_dpo.c | 3 |
1 files changed, 0 insertions, 3 deletions
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"), }; |