diff options
author | Neale Ranns <nranns@cisco.com> | 2020-05-11 15:24:39 +0000 |
---|---|---|
committer | BenoƮt Ganne <bganne@cisco.com> | 2020-05-13 17:26:31 +0000 |
commit | 83d129837534e832dfcf7aef39f6a8619e2c021c (patch) | |
tree | 13a45c51738b6cccb4aacec572c348c3bc374e0e | |
parent | a9f7bf8b0da4e31645d315150e646f47e89c7a17 (diff) |
gso: remove ordering dependency on esp-encrypt-tun
Type: fix
... it's not a feature anymore
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: Ifbcaf7d832aa76336feb0556d0dc7d2002f19c35
-rw-r--r-- | src/vnet/gso/node.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/gso/node.c b/src/vnet/gso/node.c index b57830f1ac5..3d33c73d3e5 100644 --- a/src/vnet/gso/node.c +++ b/src/vnet/gso/node.c @@ -863,13 +863,13 @@ VNET_FEATURE_INIT (gso_l2_ip6_node, static) = { VNET_FEATURE_INIT (gso_ip4_node, static) = { .arc_name = "ip4-output", .node_name = "gso-ip4", - .runs_before = VNET_FEATURES ("esp4-encrypt-tun","ipsec4-output-feature"), + .runs_before = VNET_FEATURES ("ipsec4-output-feature"), }; VNET_FEATURE_INIT (gso_ip6_node, static) = { .arc_name = "ip6-output", .node_name = "gso-ip6", - .runs_before = VNET_FEATURES ("esp6-encrypt-tun","ipsec6-output-feature"), + .runs_before = VNET_FEATURES ("ipsec6-output-feature"), }; /* |