On 18/09/2025 01:48, Jakub Kicinski wrote:
On Tue, 16 Sep 2025 19:12:57 +0000 Vadim Fedorenko wrote:
+ for (int i = 0; i < num_of_bins; i++) {
brackets unnecessary
in the other patch you picked u8 for i, good to be consistent
(int is better)
+ hist->values[i].bin_value = MLX5_GET64(rs_histogram_cntrs,
+ rs_histogram_cntrs,
+ hist[i]);
could also be written as:
hist->values[i].bin_value =
MLX5_GET64(rs_histogram_cntrs, rs_histogram_cntrs,
hist[i]);
this doesn't actually fit into 80 chars (84 chars long)... unless we are
not too strict in the drivers..