git: 859e41e90165 - main - mlx5: fix typo, KENREL_MIN_LEVEL->KERNEL_MIN_LEVEL

Konstantin Belousov kib at FreeBSD.org
Mon Jul 12 12:00:40 UTC 2021


The branch main has been updated by kib:

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

commit 859e41e90165b00b99addf4c498b8ec031ba9df9
Author:     Konstantin Belousov <konstantinb at nvidia.com>
AuthorDate: 2021-04-07 14:08:43 +0000
Commit:     Konstantin Belousov <kib at FreeBSD.org>
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))),


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