mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
mlx5ib: Fix ethertype to be ETH_P_IPV6
Sponsored by: Juniper Networks, Inc. MFC after: 7 days Reviewed by: ae, kib, zlei Differential Revision: https://reviews.freebsd.org/D42184 (cherry picked from commit 3b173281764ba7c02f9de0a67caa1c4eca604413)
This commit is contained in:
parent
687bf7433c
commit
83dbc1dc8b
1 changed files with 1 additions and 1 deletions
|
|
@ -1925,7 +1925,7 @@ static int parse_flow_attr(u32 *match_c, u32 *match_v,
|
|||
MLX5_SET(fte_match_set_lyr_2_4, outer_headers_c,
|
||||
ethertype, 0xffff);
|
||||
MLX5_SET(fte_match_set_lyr_2_4, outer_headers_v,
|
||||
ethertype, IPPROTO_IPV6);
|
||||
ethertype, ETH_P_IPV6);
|
||||
|
||||
memcpy(MLX5_ADDR_OF(fte_match_set_lyr_2_4, outer_headers_c,
|
||||
src_ipv4_src_ipv6.ipv6_layout.ipv6),
|
||||
|
|
|
|||
Loading…
Reference in a new issue