devlink: Add API to register packet trap groups
Currently, packet trap groups are implicitly registered by drivers upon packet trap registration. When the traps are registered, each is associated with a group and the group is created by devlink, if it does not exist already. This makes it difficult for drivers to pass additional attributes for the groups. Therefore, as a preparation for future patches that require passing additional group attributes, add an API to explicitly register / unregister these groups. Next patches will convert existing drivers to use this API. Signed-off-by: Ido Schimmel <idosch@mellanox.com> Reviewed-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
c64797d453
commit
95ad9555b5
@@ -1057,6 +1057,12 @@ void devlink_trap_report(struct devlink *devlink, struct sk_buff *skb,
|
||||
void *trap_ctx, struct devlink_port *in_devlink_port,
|
||||
const struct flow_action_cookie *fa_cookie);
|
||||
void *devlink_trap_ctx_priv(void *trap_ctx);
|
||||
int devlink_trap_groups_register(struct devlink *devlink,
|
||||
const struct devlink_trap_group *groups,
|
||||
size_t groups_count);
|
||||
void devlink_trap_groups_unregister(struct devlink *devlink,
|
||||
const struct devlink_trap_group *groups,
|
||||
size_t groups_count);
|
||||
|
||||
#if IS_ENABLED(CONFIG_NET_DEVLINK)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user