diff options
author | Jiri Pirko <jiri@nvidia.com> | 2022-07-16 13:02:40 +0200 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-07-19 05:10:48 +0200 |
commit | 012ec02ae4410207f796a9b280a60b80b6cc790a (patch) | |
tree | 1eef5b367c809deb578a70577225e226adde3b56 /drivers/net/netdevsim/netdevsim.h | |
parent | net: devlink: add unlocked variants of devlink_region_create/destroy() functions (diff) | |
download | linux-012ec02ae4410207f796a9b280a60b80b6cc790a.tar.xz linux-012ec02ae4410207f796a9b280a60b80b6cc790a.zip |
netdevsim: convert driver to use unlocked devlink API during init/fini
Prepare for devlink reload being called with devlink->lock held and
convert the netdevsim driver to use unlocked devlink API during init and
fini flows. Take devl_lock() in reload_down() and reload_up() ops in the
meantime before reload cmd is converted to take the lock itself.
Signed-off-by: Jiri Pirko <jiri@nvidia.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/netdevsim/netdevsim.h')
-rw-r--r-- | drivers/net/netdevsim/netdevsim.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/netdevsim/netdevsim.h b/drivers/net/netdevsim/netdevsim.h index 0b122872b2c9..7d8ed8d8df5c 100644 --- a/drivers/net/netdevsim/netdevsim.h +++ b/drivers/net/netdevsim/netdevsim.h @@ -376,9 +376,6 @@ struct nsim_bus_dev { */ unsigned int max_vfs; unsigned int num_vfs; - /* Lock for devlink->reload_enabled in netdevsim module */ - struct mutex nsim_bus_reload_lock; - bool in_reload; bool init; }; |