mirror of https://gitee.com/openkylin/linux.git
mlxsw: spectrum: Add BGP trap
Add a trap for BGP protocol that was previously trapped by the generic trap for IP2ME. This trap will allow us to have better control (over priority and rate) of the traffic. Signed-off-by: Nogah Frankel <nogahf@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
579c82e4c5
commit
616d8040e5
|
@ -2761,6 +2761,7 @@ static const struct mlxsw_listener mlxsw_sp_listener[] = {
|
|||
MLXSW_SP_RXL_NO_MARK(IP2ME, TRAP_TO_CPU, false),
|
||||
MLXSW_SP_RXL_NO_MARK(RTR_INGRESS0, TRAP_TO_CPU, false),
|
||||
MLXSW_SP_RXL_NO_MARK(HOST_MISS_IPV4, TRAP_TO_CPU, false),
|
||||
MLXSW_SP_RXL_MARK(BGP_IPV4, TRAP_TO_CPU, false),
|
||||
};
|
||||
|
||||
static int mlxsw_sp_trap_groups_set(struct mlxsw_core *mlxsw_core)
|
||||
|
|
|
@ -62,6 +62,7 @@ enum {
|
|||
MLXSW_TRAP_ID_OSPF = 0x55,
|
||||
MLXSW_TRAP_ID_IP2ME = 0x5F,
|
||||
MLXSW_TRAP_ID_RTR_INGRESS0 = 0x70,
|
||||
MLXSW_TRAP_ID_BGP_IPV4 = 0x88,
|
||||
MLXSW_TRAP_ID_HOST_MISS_IPV4 = 0x90,
|
||||
|
||||
MLXSW_TRAP_ID_MAX = 0x1FF
|
||||
|
|
Loading…
Reference in New Issue