summaryrefslogtreecommitdiff
path: root/net/dsa/devlink.c
diff options
context:
space:
mode:
authorMateusz Polchlopek <mateusz.polchlopek@intel.com>2024-04-19 11:08:49 +0300
committerTony Nguyen <anthony.l.nguyen@intel.com>2024-04-22 23:05:19 +0300
commit5625ca5640caa3fb797f155601d56379d260d6ba (patch)
treea43b7899020eeb27689fbc5899f90c93d92b7eef /net/dsa/devlink.c
parentc51db4ac10d57c366f9a92121e3889bfc6c324cd (diff)
downloadlinux-5625ca5640caa3fb797f155601d56379d260d6ba.tar.xz
devlink: extend devlink_param *set pointer
Extend devlink_param *set function pointer to take extack as a param. Sometimes it is needed to pass information to the end user from set function. It is more proper to use for that netlink instead of passing message to dmesg. Reviewed-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Przemek Kitszel <przemyslaw.kitszel@intel.com> Signed-off-by: Mateusz Polchlopek <mateusz.polchlopek@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Diffstat (limited to 'net/dsa/devlink.c')
-rw-r--r--net/dsa/devlink.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/dsa/devlink.c b/net/dsa/devlink.c
index 431bf52290a1..0aac887d0098 100644
--- a/net/dsa/devlink.c
+++ b/net/dsa/devlink.c
@@ -194,7 +194,8 @@ int dsa_devlink_param_get(struct devlink *dl, u32 id,
EXPORT_SYMBOL_GPL(dsa_devlink_param_get);
int dsa_devlink_param_set(struct devlink *dl, u32 id,
- struct devlink_param_gset_ctx *ctx)
+ struct devlink_param_gset_ctx *ctx,
+ struct netlink_ext_ack *extack)
{
struct dsa_switch *ds = dsa_devlink_to_ds(dl);