]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
net/mlx5e: Use ethtool_sprintf/puts() to fill selftests strings
authorGal Pressman <gal@nvidia.com>
Tue, 2 Apr 2024 13:30:34 +0000 (16:30 +0300)
committerJakub Kicinski <kuba@kernel.org>
Thu, 4 Apr 2024 02:47:58 +0000 (19:47 -0700)
Use ethtool_sprintf/puts() helper functions which handle the common
pattern of printing a string into the ethtool strings interface and
incrementing the string pointer by ETH_GSTRING_LEN.

The int return value in mlx5e_self_test_fill_strings() is not removed as
it is still used to return the number of selftests.

Signed-off-by: Gal Pressman <gal@nvidia.com>
Reviewed-by: Tariq Toukan <tariqt@nvidia.com>
Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://lore.kernel.org/r/20240402133043.56322-3-tariqt@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/mellanox/mlx5/core/en_selftest.c

index 08a75654f5f188ca96a04c3920416e3c9b0eab5f..5bf8318cc48b8e3cbd017e6121dbaa2a58712bd7 100644 (file)
@@ -359,7 +359,7 @@ int mlx5e_self_test_fill_strings(struct mlx5e_priv *priv, u8 *data)
                if (st.cond_func && st.cond_func(priv))
                        continue;
                if (data)
-                       strcpy(data + count * ETH_GSTRING_LEN, st.name);
+                       ethtool_puts(&data, st.name);
                count++;
        }
        return count;