mirror of https://gitee.com/openkylin/linux.git
mlxsw: reg: Add FDB action to forward to router
Incoming packets are directed to the router when they match an FDB entry with action forward to IP router. Add this action, which was mistakenly named "TRAP". Signed-off-by: Ido Schimmel <idosch@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
fa3054f5a8
commit
d82d8c060f
|
@ -386,7 +386,9 @@ enum mlxsw_reg_sfd_rec_action {
|
|||
/* forward and trap, trap_id is FDB_TRAP */
|
||||
MLXSW_REG_SFD_REC_ACTION_MIRROR_TO_CPU = 1,
|
||||
/* trap and do not forward, trap_id is FDB_TRAP */
|
||||
MLXSW_REG_SFD_REC_ACTION_TRAP = 3,
|
||||
MLXSW_REG_SFD_REC_ACTION_TRAP = 2,
|
||||
/* forward to IP router */
|
||||
MLXSW_REG_SFD_REC_ACTION_FORWARD_IP_ROUTER = 3,
|
||||
MLXSW_REG_SFD_REC_ACTION_DISCARD_ERROR = 15,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue