mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
devlink: add missing unregister linecard notification
[ Upstream commit2ebbc9752d] Cited fixes commit introduced linecard notifications for register, however it didn't add them for unregister. Fix that by adding them. Fixes:c246f9b5fd("devlink: add support to create line card and expose to user") Signed-off-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://lore.kernel.org/r/20230817125240.2144794-1-jiri@resnulli.us Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1375d20612
commit
b701b8d191
@@ -9727,6 +9727,7 @@ static void devlink_notify_unregister(struct devlink *devlink)
|
||||
struct devlink_param_item *param_item;
|
||||
struct devlink_trap_item *trap_item;
|
||||
struct devlink_port *devlink_port;
|
||||
struct devlink_linecard *linecard;
|
||||
struct devlink_rate *rate_node;
|
||||
struct devlink_region *region;
|
||||
|
||||
@@ -9753,6 +9754,8 @@ static void devlink_notify_unregister(struct devlink *devlink)
|
||||
|
||||
list_for_each_entry_reverse(devlink_port, &devlink->port_list, list)
|
||||
devlink_port_notify(devlink_port, DEVLINK_CMD_PORT_DEL);
|
||||
list_for_each_entry_reverse(linecard, &devlink->linecard_list, list)
|
||||
devlink_linecard_notify(linecard, DEVLINK_CMD_LINECARD_DEL);
|
||||
devlink_notify(devlink, DEVLINK_CMD_DEL);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user