The branch main has been updated by hselasky:

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

commit b8051298b0a345ae0bdfcd2ddf89bca1b96c6c2a
Author:     Hans Petter Selasky <[email protected]>
AuthorDate: 2021-01-26 16:01:34 +0000
Commit:     Hans Petter Selasky <[email protected]>
CommitDate: 2021-01-28 13:51:58 +0000

    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 .
    
    MFC after:      1 week
    Sponsored by:   Mellanox Technologies // NVIDIA Networking
---
 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:
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to