aboutsummaryrefslogtreecommitdiff
path: root/net/devlink
diff options
context:
space:
mode:
authorGravatar Mateusz Polchlopek <mateusz.polchlopek@intel.com> 2024-04-19 04:08:49 -0400
committerGravatar Tony Nguyen <anthony.l.nguyen@intel.com> 2024-04-22 13:05:19 -0700
commit5625ca5640caa3fb797f155601d56379d260d6ba (patch)
treea43b7899020eeb27689fbc5899f90c93d92b7eef /net/devlink
parenttcp: do not export tcp_twsk_purge() (diff)
downloadlinux-5625ca5640caa3fb797f155601d56379d260d6ba.tar.gz
linux-5625ca5640caa3fb797f155601d56379d260d6ba.tar.bz2
linux-5625ca5640caa3fb797f155601d56379d260d6ba.zip
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/devlink')
-rw-r--r--net/devlink/param.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/net/devlink/param.c b/net/devlink/param.c
index 22bc3b500518..dcf0d1ccebba 100644
--- a/net/devlink/param.c
+++ b/net/devlink/param.c
@@ -158,11 +158,12 @@ static int devlink_param_get(struct devlink *devlink,
static int devlink_param_set(struct devlink *devlink,
const struct devlink_param *param,
- struct devlink_param_gset_ctx *ctx)
+ struct devlink_param_gset_ctx *ctx,
+ struct netlink_ext_ack *extack)
{
if (!param->set)
return -EOPNOTSUPP;
- return param->set(devlink, param->id, ctx);
+ return param->set(devlink, param->id, ctx, extack);
}
static int
@@ -571,7 +572,7 @@ static int __devlink_nl_cmd_param_set_doit(struct devlink *devlink,
return -EOPNOTSUPP;
ctx.val = value;
ctx.cmode = cmode;
- err = devlink_param_set(devlink, param, &ctx);
+ err = devlink_param_set(devlink, param, &ctx, info->extack);
if (err)
return err;
}