diff options
author | Mark Bloch <markb@mellanox.com> | 2019-03-28 15:27:31 +0200 |
---|---|---|
committer | Leon Romanovsky <leonro@mellanox.com> | 2019-04-10 09:28:41 +0300 |
commit | b6d9ccb1125049941590ea895c38e1167badba5f (patch) | |
tree | 24c782cc525931f3f270d32cc08320582a85ece0 /include | |
parent | aef6c443fe84d09cd4a272bc68837b58b584dc6f (diff) |
net/mlx5: E-Switch, don't use hardcoded values for FDB prios
When creating the FDB prios, use the enum values already defined and not
the hardcoded values.
Signed-off-by: Mark Bloch <markb@mellanox.com>
Reviewed-by: Maor Gottlieb <maorg@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mlx5/fs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mlx5/fs.h b/include/linux/mlx5/fs.h index 9df51da04621..3eeb04154317 100644 --- a/include/linux/mlx5/fs.h +++ b/include/linux/mlx5/fs.h @@ -75,6 +75,11 @@ enum mlx5_flow_namespace_type { MLX5_FLOW_NAMESPACE_EGRESS, }; +enum { + FDB_FAST_PATH, + FDB_SLOW_PATH, +}; + struct mlx5_flow_table; struct mlx5_flow_group; struct mlx5_flow_namespace; |