]> git.droids-corp.org - dpdk.git/commitdiff
common/mlx5: fix user mode register access attribute
authorMichael Baum <michaelba@nvidia.com>
Wed, 17 Nov 2021 10:57:09 +0000 (12:57 +0200)
committerRaslan Darawsheh <rasland@nvidia.com>
Wed, 17 Nov 2021 14:51:39 +0000 (15:51 +0100)
To detect the timestamp mode configured on the NIC the mlx5 PMD uses the
firmware command ACCESS_REGISTER_USER.
The HCA capability command has an attribute flag checking whether
firmware supports the command.

However, the HCA capability query command read the flag from wrong place
in PRM structure.

This patch move the flag to correct place.

Fixes: 972a1bf8120d ("common/mlx5: fix user mode register access command")
Cc: stable@dpdk.org
Signed-off-by: Michael Baum <michaelba@nvidia.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
drivers/common/mlx5/mlx5_prm.h

index 13959575e3a987eec3268e1a59f283bc2d2277bb..2ded67e85e23ae02cbbe03ccb112770547e37b03 100644 (file)
@@ -1370,13 +1370,14 @@ struct mlx5_ifc_cmd_hca_cap_bits {
        u8 reserved_at_bc[0x4];
        u8 reserved_at_c0[0x8];
        u8 log_max_cq_sz[0x8];
-       u8 reserved_at_d0[0xb];
+       u8 reserved_at_d0[0x2];
+       u8 access_register_user[0x1];
+       u8 reserved_at_d3[0x8];
        u8 log_max_cq[0x5];
        u8 log_max_eq_sz[0x8];
        u8 relaxed_ordering_write[0x1];
        u8 relaxed_ordering_read[0x1];
-       u8 access_register_user[0x1];
-       u8 log_max_mkey[0x5];
+       u8 log_max_mkey[0x6];
        u8 reserved_at_f0[0x8];
        u8 dump_fill_mkey[0x1];
        u8 reserved_at_f9[0x3];