diff options
| author | Ido Schimmel <idosch@mellanox.com> | 2020-05-29 21:36:36 +0300 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2020-06-01 11:49:23 -0700 | 
| commit | 678eb199cc9df3bf1cb12fb2da22768b8d1b6bf3 (patch) | |
| tree | 37ae396c02f917f23181ef79911ba580258e57be | |
| parent | af0a2482fa0fe04c63cc63f6d064f011865385fd (diff) | |
devlink: Create dedicated trap group for layer 3 exceptions
Packets that hit exceptions during layer 3 forwarding must be trapped to
the CPU for the control plane to function properly. Create a dedicated
group for them, so that user space could choose to assign a different
policer for them.
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | Documentation/networking/devlink/devlink-trap.rst | 7 | ||||
| -rw-r--r-- | include/net/devlink.h | 3 | ||||
| -rw-r--r-- | net/core/devlink.c | 1 | 
3 files changed, 9 insertions, 2 deletions
| diff --git a/Documentation/networking/devlink/devlink-trap.rst b/Documentation/networking/devlink/devlink-trap.rst index fe089acb7783..4ca241e70064 100644 --- a/Documentation/networking/devlink/devlink-trap.rst +++ b/Documentation/networking/devlink/devlink-trap.rst @@ -277,8 +277,11 @@ narrow. The description of these groups must be added to the following table:       - Contains packet traps for packets that were dropped by the device during         layer 2 forwarding (i.e., bridge)     * - ``l3_drops`` -     - Contains packet traps for packets that were dropped by the device or hit -       an exception (e.g., TTL error) during layer 3 forwarding +     - Contains packet traps for packets that were dropped by the device during +       layer 3 forwarding +   * - ``l3_exceptions`` +     - Contains packet traps for packets that hit an exception (e.g., TTL +       error) during layer 3 forwarding     * - ``buffer_drops``       - Contains packet traps for packets that were dropped by the device due to         an enqueue decision diff --git a/include/net/devlink.h b/include/net/devlink.h index 8ffc1b5cd89b..851388c9d795 100644 --- a/include/net/devlink.h +++ b/include/net/devlink.h @@ -657,6 +657,7 @@ enum devlink_trap_generic_id {  enum devlink_trap_group_generic_id {  	DEVLINK_TRAP_GROUP_GENERIC_ID_L2_DROPS,  	DEVLINK_TRAP_GROUP_GENERIC_ID_L3_DROPS, +	DEVLINK_TRAP_GROUP_GENERIC_ID_L3_EXCEPTIONS,  	DEVLINK_TRAP_GROUP_GENERIC_ID_BUFFER_DROPS,  	DEVLINK_TRAP_GROUP_GENERIC_ID_TUNNEL_DROPS,  	DEVLINK_TRAP_GROUP_GENERIC_ID_ACL_DROPS, @@ -730,6 +731,8 @@ enum devlink_trap_group_generic_id {  	"l2_drops"  #define DEVLINK_TRAP_GROUP_GENERIC_NAME_L3_DROPS \  	"l3_drops" +#define DEVLINK_TRAP_GROUP_GENERIC_NAME_L3_EXCEPTIONS \ +	"l3_exceptions"  #define DEVLINK_TRAP_GROUP_GENERIC_NAME_BUFFER_DROPS \  	"buffer_drops"  #define DEVLINK_TRAP_GROUP_GENERIC_NAME_TUNNEL_DROPS \ diff --git a/net/core/devlink.c b/net/core/devlink.c index 7b76e5fffc10..d9fff7083f02 100644 --- a/net/core/devlink.c +++ b/net/core/devlink.c @@ -8505,6 +8505,7 @@ static const struct devlink_trap devlink_trap_generic[] = {  static const struct devlink_trap_group devlink_trap_group_generic[] = {  	DEVLINK_TRAP_GROUP(L2_DROPS),  	DEVLINK_TRAP_GROUP(L3_DROPS), +	DEVLINK_TRAP_GROUP(L3_EXCEPTIONS),  	DEVLINK_TRAP_GROUP(BUFFER_DROPS),  	DEVLINK_TRAP_GROUP(TUNNEL_DROPS),  	DEVLINK_TRAP_GROUP(ACL_DROPS), | 
