From: Neale Ranns Date: Fri, 2 Aug 2019 08:17:13 +0000 (-0700) Subject: ipsec: FIx feature ordering X-Git-Tag: v20.01-rc0~30 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F28%2F21028%2F2;p=vpp.git ipsec: FIx feature ordering Type: fix Fixes: 1404698df397bc4d3007daea41f52ad75ed4486c Change-Id: Ibb77d95bb5e862cf5d1cb65843c526fd2e225c62 Signed-off-by: Neale Ranns --- diff --git a/src/vnet/ip/ip4_reassembly.c b/src/vnet/ip/ip4_reassembly.c index 493f06fd43b..b82bafeac54 100644 --- a/src/vnet/ip/ip4_reassembly.c +++ b/src/vnet/ip/ip4_reassembly.c @@ -1203,8 +1203,7 @@ VNET_FEATURE_INIT (ip4_reassembly_feature, static) = { .arc_name = "ip4-unicast", .node_name = "ip4-reassembly-feature", .runs_before = VNET_FEATURES ("ip4-lookup", - "esp4-decrypt", - "ah4-decrypt"), + "ipsec4-input-feature"), .runs_after = 0, }; /* *INDENT-ON* */ diff --git a/src/vnet/ip/ip6_reassembly.c b/src/vnet/ip/ip6_reassembly.c index 8d455e90e38..20bb7720526 100644 --- a/src/vnet/ip/ip6_reassembly.c +++ b/src/vnet/ip/ip6_reassembly.c @@ -1182,8 +1182,7 @@ VNET_FEATURE_INIT (ip6_reassembly_feature, static) = { .arc_name = "ip6-unicast", .node_name = "ip6-reassembly-feature", .runs_before = VNET_FEATURES ("ip6-lookup", - "esp6-decrypt", - "ah6-decrypt"), + "ipsec6-input-feature"), .runs_after = 0, }; /* *INDENT-ON* */