diff options
| author | 2024-03-27 16:23:56 +0100 | |
|---|---|---|
| committer | 2024-04-01 10:49:28 +0100 | |
| commit | 6dd514f48110ebb4bf36875b9e7e02d07b589caa (patch) | |
| tree | c7d398887ad5a8ad6ff17fd7108c1c31793681d3 /net/core/net_test.c | |
| parent | pfcp: add PFCP module (diff) | |
| download | wireguard-linux-6dd514f48110ebb4bf36875b9e7e02d07b589caa.tar.xz wireguard-linux-6dd514f48110ebb4bf36875b9e7e02d07b589caa.zip | |
pfcp: always set pfcp metadata
In PFCP receive path set metadata needed by flower code to do correct
classification based on this metadata.
Signed-off-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com>
Signed-off-by: Marcin Szycik <marcin.szycik@linux.intel.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: Alexander Lobakin <aleksander.lobakin@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net_test.c')
| -rw-r--r-- | net/core/net_test.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/net/core/net_test.c b/net/core/net_test.c index 30062b9621e4..9c3a590865d2 100644 --- a/net/core/net_test.c +++ b/net/core/net_test.c @@ -335,11 +335,8 @@ static const struct ip_tunnel_flags_test ip_tunnel_flags_test[] = { ip_tunnel_flags_1), IP_TUNNEL_FLAGS_TEST("conflict", ip_tunnel_flags_2_src, true, VTI_ISVTI, ip_tunnel_flags_2_exp), - IP_TUNNEL_FLAGS_TEST("new", ip_tunnel_flags_3_src, - /* This must be set to ``false`` once - * ``__IP_TUNNEL_FLAG_NUM`` goes above 17. - */ - true, cpu_to_be16(BIT(IP_TUNNEL_VXLAN_OPT_BIT)), + IP_TUNNEL_FLAGS_TEST("new", ip_tunnel_flags_3_src, false, + cpu_to_be16(BIT(IP_TUNNEL_VXLAN_OPT_BIT)), ip_tunnel_flags_3_exp), }; |
