summaryrefslogtreecommitdiffstats
path: root/net/devlink/devl_internal.h
diff options
context:
space:
mode:
authorJiri Pirko <jiri@nvidia.com>2023-02-10 11:01:26 +0100
committerDavid S. Miller <davem@davemloft.net>2023-02-13 09:49:14 +0000
commitafd888c3e19ceb5247158fe2fabbf7234937a515 (patch)
tree6ee81524048814d2708e1997aaf29f55c9444dcf /net/devlink/devl_internal.h
parentfa2f921f3bf1ed98956ad341b920a55aab69bc35 (diff)
downloadlinux-stable-afd888c3e19ceb5247158fe2fabbf7234937a515.tar.gz
linux-stable-afd888c3e19ceb5247158fe2fabbf7234937a515.tar.bz2
linux-stable-afd888c3e19ceb5247158fe2fabbf7234937a515.zip
devlink: make sure driver does not read updated driverinit param before reload
The driverinit param purpose is to serve the driver during init/reload time to provide a value, either default or set by user. Make sure that driver does not read value updated by user before the reload is performed. Hold the new value in a separate struct and switch it during reload. Note that this is required to be eventually possible to call devl_param_driverinit_value_get() without holding instance lock. Signed-off-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Simon Horman <simon.horman@corigine.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/devlink/devl_internal.h')
-rw-r--r--net/devlink/devl_internal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/devlink/devl_internal.h b/net/devlink/devl_internal.h
index 941174e157d4..5c117e8d4377 100644
--- a/net/devlink/devl_internal.h
+++ b/net/devlink/devl_internal.h
@@ -189,6 +189,9 @@ static inline bool devlink_reload_supported(const struct devlink_ops *ops)
return ops->reload_down && ops->reload_up;
}
+/* Params */
+void devlink_params_driverinit_load_new(struct devlink *devlink);
+
/* Resources */
struct devlink_resource;
int devlink_resources_validate(struct devlink *devlink,