From: Long Wu <long...@corigine.com> The port and port mask field of 'struct nfp_net_cmsg_match_v4' are in the wrong position, and this will cause firmware not work as expected.
Fixes: 42eabda06b0f ("net/nfp: support IPv4 flow item") Cc: chaoyong...@corigine.com Cc: sta...@dpdk.org Signed-off-by: Long Wu <long...@corigine.com> Reviewed-by: Chaoyong He <chaoyong...@corigine.com> Reviewed-by: Peng Zhang <peng.zh...@corigine.com> --- drivers/net/nfp/nfp_net_cmsg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/nfp/nfp_net_cmsg.h b/drivers/net/nfp/nfp_net_cmsg.h index 4fab462cb9..b3d9bc33cf 100644 --- a/drivers/net/nfp/nfp_net_cmsg.h +++ b/drivers/net/nfp/nfp_net_cmsg.h @@ -52,10 +52,10 @@ struct nfp_net_cmsg_match_v4 { uint32_t src_ipv4_mask; uint32_t dst_ipv4; uint32_t dst_ipv4_mask; - uint16_t src_port; uint16_t src_port_mask; - uint16_t dst_port; + uint16_t src_port; uint16_t dst_port_mask; + uint16_t dst_port; }; /** -- 2.39.1