diff options
author | Maor Gottlieb <maorg@mellanox.com> | 2016-03-07 18:51:47 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2016-03-10 09:22:06 -0500 |
commit | 35d1901134e97cf95c0ab6ef70f5aead6cb34e9e (patch) | |
tree | 228c68726c6d68e06baefe3db846a8a912345cac /drivers/infiniband/hw/mlx5/mlx5_ib.h | |
parent | b3638e1a76648dbd482cc5a8f27eb6948cc3bc86 (diff) | |
download | op-kernel-dev-35d1901134e97cf95c0ab6ef70f5aead6cb34e9e.zip op-kernel-dev-35d1901134e97cf95c0ab6ef70f5aead6cb34e9e.tar.gz |
IB/mlx5: Add support for don't trap rules
Each bypass flow steering priority will be split into two priorities:
1. Priority for don't trap rules.
2. Priority for normal rules.
When user creates a flow using IB_FLOW_ATTR_FLAGS_DONT_TRAP flag, the
driver creates two flow rules, one used for receiving the traffic and
the other one for forwarding the packet to continue matching in lower
or equal priorities.
Signed-off-by: Maor Gottlieb <maorg@mellanox.com>
Reviewed-by: Matan Barak <matanb@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx5/mlx5_ib.h')
-rw-r--r-- | drivers/infiniband/hw/mlx5/mlx5_ib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/mlx5_ib.h b/drivers/infiniband/hw/mlx5/mlx5_ib.h index d2b9737..bd84b1f 100644 --- a/drivers/infiniband/hw/mlx5/mlx5_ib.h +++ b/drivers/infiniband/hw/mlx5/mlx5_ib.h @@ -126,7 +126,7 @@ struct mlx5_ib_pd { }; #define MLX5_IB_FLOW_MCAST_PRIO (MLX5_BY_PASS_NUM_PRIOS - 1) -#define MLX5_IB_FLOW_LAST_PRIO (MLX5_IB_FLOW_MCAST_PRIO - 1) +#define MLX5_IB_FLOW_LAST_PRIO (MLX5_BY_PASS_NUM_REGULAR_PRIOS - 1) #if (MLX5_IB_FLOW_LAST_PRIO <= 0) #error "Invalid number of bypass priorities" #endif |