git: 22aca6726891 - stable/13 - MFC b8051298b0a3: Fix missing value in uar_page field for ratelimit in mlx5en(4). This is a regression issue after the new UAR API was introduced by f8f5b459d21e .

Hans Petter Selasky hselasky at FreeBSD.org
Mon Feb 1 09:24:43 UTC 2021


The branch stable/13 has been updated by hselasky:

URL: https://cgit.FreeBSD.org/src/commit/?id=22aca672689130e683672e8e9164e24e598fe377

commit 22aca672689130e683672e8e9164e24e598fe377
Author:     Hans Petter Selasky <hselasky at FreeBSD.org>
AuthorDate: 2021-01-26 16:01:34 +0000
Commit:     Hans Petter Selasky <hselasky at FreeBSD.org>
CommitDate: 2021-02-01 09:23:25 +0000

    MFC b8051298b0a3:
    Fix missing value in uar_page field for ratelimit in mlx5en(4).
    This is a regression issue after the new UAR API was introduced
    by f8f5b459d21e .
    
    Sponsored by:   Mellanox Technologies // NVIDIA Networking
    
    (cherry picked from commit b8051298b0a345ae0bdfcd2ddf89bca1b96c6c2a)
---
 sys/dev/mlx5/mlx5_en/mlx5_en_rl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c b/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
index 95fb59726e24..33b93b1b5ced 100644
--- a/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
+++ b/sys/dev/mlx5/mlx5_en/mlx5_en_rl.c
@@ -66,6 +66,7 @@ mlx5e_rl_build_cq_param(struct mlx5e_rl_priv_data *rl,
 	MLX5_SET(cqc, cqc, log_cq_size, log_sq_size);
 	MLX5_SET(cqc, cqc, cq_period, rl->param.tx_coalesce_usecs);
 	MLX5_SET(cqc, cqc, cq_max_count, rl->param.tx_coalesce_pkts);
+	MLX5_SET(cqc, cqc, uar_page, rl->priv->mdev->priv.uar->index);
 
 	switch (rl->param.tx_coalesce_mode) {
 	case 0:


More information about the dev-commits-src-branches mailing list