mirror of
https://github.com/torvalds/linux.git
synced 2026-06-01 02:53:36 +02:00
net/mlx5: HWS, fix missing ip_version handling in definer
Fix missing field handling in definer - outer IP version.
Fixes: 74a778b4a6 ("net/mlx5: HWS, added definers handling")
Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com>
Signed-off-by: Mark Bloch <mbloch@nvidia.com>
Link: https://patch.msgid.link/20250610151514.1094735-6-mbloch@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
a002602676
commit
b5e3c76f35
|
|
@ -785,6 +785,9 @@ hws_definer_conv_outer(struct mlx5hws_definer_conv_data *cd,
|
|||
HWS_SET_HDR(fc, match_param, IP_PROTOCOL_O,
|
||||
outer_headers.ip_protocol,
|
||||
eth_l3_outer.protocol_next_header);
|
||||
HWS_SET_HDR(fc, match_param, IP_VERSION_O,
|
||||
outer_headers.ip_version,
|
||||
eth_l3_outer.ip_version);
|
||||
HWS_SET_HDR(fc, match_param, IP_TTL_O,
|
||||
outer_headers.ttl_hoplimit,
|
||||
eth_l3_outer.time_to_live_hop_limit);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user