diff options
| author | Konstantin Belousov <konstantinb@nvidia.com> | 2021-04-07 14:08:43 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2021-07-12 09:34:38 +0000 |
| commit | 859e41e90165b00b99addf4c498b8ec031ba9df9 (patch) | |
| tree | dcce9ca770c837ac04c6293cf8e6e3efb3ebf8c6 | |
| parent | bf202a8d7afb2e024d3d29d4d90e24b3925e9f06 (diff) | |
mlx5: fix typo, KENREL_MIN_LEVEL->KERNEL_MIN_LEVEL
Reviewed by: hselasky
Sponsored by: Mellanox Technologies/NVidia Networking
MFC after: 1 week
| -rw-r--r-- | sys/dev/mlx5/mlx5_core/mlx5_fs_tree.c | 6 |
1 files 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))), |
