From: Mohammad Kabat Date: Thu, 25 Mar 2021 12:38:55 +0000 (+0200) Subject: net/mlx5: Fix size field in bufferx_reg struct X-Git-Tag: baikal/aarch64/sdk6.1~4527^2~7^2~4 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=710adae5957c8a7e891a95f6285237d2a42aecbc;p=kernel.git net/mlx5: Fix size field in bufferx_reg struct According to HW spec the field "size" should be 16 bits in bufferx register. Fixes: fffec1f0938e ("net/mlx5_core: HW data structs/types definitions cleanup") Signed-off-by: Mohammad Kabat Reviewed-by: Moshe Shemesh Signed-off-by: Saeed Mahameed --- diff --git a/include/linux/mlx5/mlx5_ifc.h b/include/linux/mlx5/mlx5_ifc.h index 598ac3bcc901f..5743f5b3414bf 100644 --- a/include/linux/mlx5/mlx5_ifc.h +++ b/include/linux/mlx5/mlx5_ifc.h @@ -9900,8 +9900,8 @@ struct mlx5_ifc_bufferx_reg_bits { u8 reserved_at_0[0x6]; u8 lossy[0x1]; u8 epsb[0x1]; - u8 reserved_at_8[0xc]; - u8 size[0xc]; + u8 reserved_at_8[0x8]; + u8 size[0x10]; u8 xoff_threshold[0x10]; u8 xon_threshold[0x10];