]> git.baikalelectronics.ru Git - kernel.git/commit
net/mlx5e: Use struct assignment to initialize mlx5e_tx_wqe_info
authorMaxim Mikityanskiy <maximmi@mellanox.com>
Tue, 8 Sep 2020 07:46:09 +0000 (10:46 +0300)
committerSaeed Mahameed <saeedm@nvidia.com>
Tue, 22 Sep 2020 02:41:13 +0000 (19:41 -0700)
commite40f273dc33a5e92ddcdb67a856ece8b5df6ac15
treed4f6ca1f6806a2784dcb334aed03db373b2e3e27
parentcc664a6e0fd564eb573aa957670a6f2c908e3cda
net/mlx5e: Use struct assignment to initialize mlx5e_tx_wqe_info

Struct assignment guarantees that all fields of the structure are
initialized (those that are not mentioned are zeroed). It makes code
mode robust and reduces chances for unpredictable behavior when one
forgets to reset some field and it holds an old value from previous
iterations of using the structure.

Signed-off-by: Maxim Mikityanskiy <maximmi@mellanox.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
drivers/net/ethernet/mellanox/mlx5/core/en_tx.c