The branch main has been updated by kib:

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

commit 859e41e90165b00b99addf4c498b8ec031ba9df9
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2021-04-07 14:08:43 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2021-07-12 09:34:38 +0000

    mlx5: fix typo, KENREL_MIN_LEVEL->KERNEL_MIN_LEVEL
    
    Reviewed by:    hselasky
    Sponsored by:   Mellanox Technologies/NVidia Networking
    MFC after:      1 week
---
 sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c 
b/sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c
index 55c7896e3d52..320831b6e153 100644
--- a/sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c
+++ b/sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c
@@ -68,8 +68,8 @@
 #define BYPASS_PRIO_MAX_FT 1
 #define KERNEL_MAX_FT 5
 #define LEFTOVER_MAX_FT 1
-#define KENREL_MIN_LEVEL 3
-#define LEFTOVER_MIN_LEVEL KENREL_MIN_LEVEL + 1
+#define KERNEL_MIN_LEVEL 3
+#define LEFTOVER_MIN_LEVEL KERNEL_MIN_LEVEL + 1
 #define BYPASS_MIN_LEVEL MLX5_NUM_BYPASS_FTS + LEFTOVER_MIN_LEVEL
 struct node_caps {
        size_t  arr_sz;
@@ -113,7 +113,7 @@ struct init_tree_node {
                                            BYPASS_PRIO_MAX_FT),
                                ADD_FT_PRIO("prio-mcast", 0,
                                            BYPASS_PRIO_MAX_FT))),
-               ADD_PRIO("kernel_prio", 0, KENREL_MIN_LEVEL, 0, {},
+               ADD_PRIO("kernel_prio", 0, KERNEL_MIN_LEVEL, 0, {},
                         ADD_NS("kernel_ns",
                                ADD_FT_PRIO("prio_kernel-0", 0,
                                            KERNEL_MAX_FT))),
_______________________________________________
[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