naccyde / rpms / iproute

Forked from rpms/iproute 6 months ago
Clone

Blame SOURCES/0049-devlink-Add-param-command-support.patch

8def76
From a126f6cc4f4d8f5f58758d673fbdb80894c5f05d Mon Sep 17 00:00:00 2001
8def76
From: Andrea Claudi <aclaudi@redhat.com>
8def76
Date: Wed, 29 May 2019 18:55:33 +0200
8def76
Subject: [PATCH] devlink: Add param command support
8def76
8def76
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1663199
8def76
Upstream Status: iproute2.git commit 13925ae9eb38b
8def76
8def76
commit 13925ae9eb38b99107be1d3fe21a1b73cf40bd97
8def76
Author: Moshe Shemesh <moshe@mellanox.com>
8def76
Date:   Wed Jul 4 17:12:06 2018 +0300
8def76
8def76
    devlink: Add param command support
8def76
8def76
    Add support for configuration parameters set and show.
8def76
    Each parameter can be either generic or driver-specific.
8def76
    The user can retrieve data on these configuration parameters by devlink
8def76
    param show command and can set new value to a configuration parameter
8def76
    by devlink param set command.
8def76
    The configuration parameters can be set in different configuration
8def76
    modes:
8def76
      runtime - set while driver is running, no reset required.
8def76
      driverinit - applied while driver initializes, requires restart
8def76
                   driver by devlink reload command.
8def76
      permanent - written to device's non-volatile memory, hard reset
8def76
                  required to apply.
8def76
8def76
    New commands added:
8def76
      devlink dev param show [DEV name PARAMETER]
8def76
      devlink dev param set DEV name PARAMETER value VALUE
8def76
                                cmode { permanent | driverinit | runtime }
8def76
8def76
    Signed-off-by: Moshe Shemesh <moshe@mellanox.com>
8def76
    Signed-off-by: Jiri Pirko <jiri@mellanox.com>
8def76
    Signed-off-by: David Ahern <dsahern@gmail.com>
8def76
---
8def76
 devlink/devlink.c      | 454 +++++++++++++++++++++++++++++++++++++++++
8def76
 man/man8/devlink-dev.8 |  57 ++++++
8def76
 2 files changed, 511 insertions(+)
8def76
8def76
diff --git a/devlink/devlink.c b/devlink/devlink.c
8def76
index 7a5aef84f25dc..00a514f8ff666 100644
8def76
--- a/devlink/devlink.c
8def76
+++ b/devlink/devlink.c
8def76
@@ -35,6 +35,10 @@
8def76
 #define ESWITCH_INLINE_MODE_NETWORK "network"
8def76
 #define ESWITCH_INLINE_MODE_TRANSPORT "transport"
8def76
 
8def76
+#define PARAM_CMODE_RUNTIME_STR "runtime"
8def76
+#define PARAM_CMODE_DRIVERINIT_STR "driverinit"
8def76
+#define PARAM_CMODE_PERMANENT_STR "permanent"
8def76
+
8def76
 static int g_new_line_count;
8def76
 
8def76
 #define pr_err(args...) fprintf(stderr, ##args)
8def76
@@ -187,6 +191,9 @@ static void ifname_map_free(struct ifname_map *ifname_map)
8def76
 #define DL_OPT_ESWITCH_ENCAP_MODE	BIT(15)
8def76
 #define DL_OPT_RESOURCE_PATH	BIT(16)
8def76
 #define DL_OPT_RESOURCE_SIZE	BIT(17)
8def76
+#define DL_OPT_PARAM_NAME	BIT(18)
8def76
+#define DL_OPT_PARAM_VALUE	BIT(19)
8def76
+#define DL_OPT_PARAM_CMODE	BIT(20)
8def76
 
8def76
 struct dl_opts {
8def76
 	uint32_t present; /* flags of present items */
8def76
@@ -211,6 +218,9 @@ struct dl_opts {
8def76
 	uint32_t resource_size;
8def76
 	uint32_t resource_id;
8def76
 	bool resource_id_valid;
8def76
+	const char *param_name;
8def76
+	const char *param_value;
8def76
+	enum devlink_param_cmode cmode;
8def76
 };
8def76
 
8def76
 struct dl {
8def76
@@ -348,6 +358,12 @@ static const enum mnl_attr_data_type devlink_policy[DEVLINK_ATTR_MAX + 1] = {
8def76
 	[DEVLINK_ATTR_DPIPE_FIELD_ID] = MNL_TYPE_U32,
8def76
 	[DEVLINK_ATTR_DPIPE_FIELD_BITWIDTH] = MNL_TYPE_U32,
8def76
 	[DEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE] = MNL_TYPE_U32,
8def76
+	[DEVLINK_ATTR_PARAM] = MNL_TYPE_NESTED,
8def76
+	[DEVLINK_ATTR_PARAM_NAME] = MNL_TYPE_STRING,
8def76
+	[DEVLINK_ATTR_PARAM_TYPE] = MNL_TYPE_U8,
8def76
+	[DEVLINK_ATTR_PARAM_VALUES_LIST] = MNL_TYPE_NESTED,
8def76
+	[DEVLINK_ATTR_PARAM_VALUE] = MNL_TYPE_NESTED,
8def76
+	[DEVLINK_ATTR_PARAM_VALUE_CMODE] = MNL_TYPE_U8,
8def76
 };
8def76
 
8def76
 static int attr_cb(const struct nlattr *attr, void *data)
8def76
@@ -514,6 +530,34 @@ static int strtouint16_t(const char *str, uint16_t *p_val)
8def76
 	return 0;
8def76
 }
8def76
 
8def76
+static int strtouint8_t(const char *str, uint8_t *p_val)
8def76
+{
8def76
+	char *endptr;
8def76
+	unsigned long int val;
8def76
+
8def76
+	val = strtoul(str, &endptr, 10);
8def76
+	if (endptr == str || *endptr != '\0')
8def76
+		return -EINVAL;
8def76
+	if (val > UCHAR_MAX)
8def76
+		return -ERANGE;
8def76
+	*p_val = val;
8def76
+	return 0;
8def76
+}
8def76
+
8def76
+static int strtobool(const char *str, bool *p_val)
8def76
+{
8def76
+	bool val;
8def76
+
8def76
+	if (!strcmp(str, "true") || !strcmp(str, "1"))
8def76
+		val = true;
8def76
+	else if (!strcmp(str, "false") || !strcmp(str, "0"))
8def76
+		val = false;
8def76
+	else
8def76
+		return -EINVAL;
8def76
+	*p_val = val;
8def76
+	return 0;
8def76
+}
8def76
+
8def76
 static int __dl_argv_handle(char *str, char **p_bus_name, char **p_dev_name)
8def76
 {
8def76
 	strslashrsplit(str, p_bus_name, p_dev_name);
8def76
@@ -792,6 +836,22 @@ static int eswitch_encap_mode_get(const char *typestr, bool *p_mode)
8def76
 	return 0;
8def76
 }
8def76
 
8def76
+static int param_cmode_get(const char *cmodestr,
8def76
+			   enum devlink_param_cmode *cmode)
8def76
+{
8def76
+	if (strcmp(cmodestr, PARAM_CMODE_RUNTIME_STR) == 0) {
8def76
+		*cmode = DEVLINK_PARAM_CMODE_RUNTIME;
8def76
+	} else if (strcmp(cmodestr, PARAM_CMODE_DRIVERINIT_STR) == 0) {
8def76
+		*cmode = DEVLINK_PARAM_CMODE_DRIVERINIT;
8def76
+	} else if (strcmp(cmodestr, PARAM_CMODE_PERMANENT_STR) == 0) {
8def76
+		*cmode = DEVLINK_PARAM_CMODE_PERMANENT;
8def76
+	} else {
8def76
+		pr_err("Unknown configuration mode \"%s\"\n", cmodestr);
8def76
+		return -EINVAL;
8def76
+	}
8def76
+	return 0;
8def76
+}
8def76
+
8def76
 static int dl_argv_parse(struct dl *dl, uint32_t o_required,
8def76
 			 uint32_t o_optional)
8def76
 {
8def76
@@ -973,6 +1033,32 @@ static int dl_argv_parse(struct dl *dl, uint32_t o_required,
8def76
 			if (err)
8def76
 				return err;
8def76
 			o_found |= DL_OPT_RESOURCE_SIZE;
8def76
+		} else if (dl_argv_match(dl, "name") &&
8def76
+			   (o_all & DL_OPT_PARAM_NAME)) {
8def76
+			dl_arg_inc(dl);
8def76
+			err = dl_argv_str(dl, &opts->param_name);
8def76
+			if (err)
8def76
+				return err;
8def76
+			o_found |= DL_OPT_PARAM_NAME;
8def76
+		} else if (dl_argv_match(dl, "value") &&
8def76
+			   (o_all & DL_OPT_PARAM_VALUE)) {
8def76
+			dl_arg_inc(dl);
8def76
+			err = dl_argv_str(dl, &opts->param_value);
8def76
+			if (err)
8def76
+				return err;
8def76
+			o_found |= DL_OPT_PARAM_VALUE;
8def76
+		} else if (dl_argv_match(dl, "cmode") &&
8def76
+			   (o_all & DL_OPT_PARAM_CMODE)) {
8def76
+			const char *cmodestr;
8def76
+
8def76
+			dl_arg_inc(dl);
8def76
+			err = dl_argv_str(dl, &cmodestr);
8def76
+			if (err)
8def76
+				return err;
8def76
+			err = param_cmode_get(cmodestr, &opts->cmode);
8def76
+			if (err)
8def76
+				return err;
8def76
+			o_found |= DL_OPT_PARAM_CMODE;
8def76
 		} else {
8def76
 			pr_err("Unknown option \"%s\"\n", dl_argv(dl));
8def76
 			return -EINVAL;
8def76
@@ -1057,6 +1143,24 @@ static int dl_argv_parse(struct dl *dl, uint32_t o_required,
8def76
 		return -EINVAL;
8def76
 	}
8def76
 
8def76
+	if ((o_required & DL_OPT_PARAM_NAME) &&
8def76
+	    !(o_found & DL_OPT_PARAM_NAME)) {
8def76
+		pr_err("Parameter name expected.\n");
8def76
+		return -EINVAL;
8def76
+	}
8def76
+
8def76
+	if ((o_required & DL_OPT_PARAM_VALUE) &&
8def76
+	    !(o_found & DL_OPT_PARAM_VALUE)) {
8def76
+		pr_err("Value to set expected.\n");
8def76
+		return -EINVAL;
8def76
+	}
8def76
+
8def76
+	if ((o_required & DL_OPT_PARAM_CMODE) &&
8def76
+	    !(o_found & DL_OPT_PARAM_CMODE)) {
8def76
+		pr_err("Configuration mode expected.\n");
8def76
+		return -EINVAL;
8def76
+	}
8def76
+
8def76
 	return 0;
8def76
 }
8def76
 
8def76
@@ -1121,6 +1225,12 @@ static void dl_opts_put(struct nlmsghdr *nlh, struct dl *dl)
8def76
 	if (opts->present & DL_OPT_RESOURCE_SIZE)
8def76
 		mnl_attr_put_u64(nlh, DEVLINK_ATTR_RESOURCE_SIZE,
8def76
 				 opts->resource_size);
8def76
+	if (opts->present & DL_OPT_PARAM_NAME)
8def76
+		mnl_attr_put_strz(nlh, DEVLINK_ATTR_PARAM_NAME,
8def76
+				  opts->param_name);
8def76
+	if (opts->present & DL_OPT_PARAM_CMODE)
8def76
+		mnl_attr_put_u8(nlh, DEVLINK_ATTR_PARAM_VALUE_CMODE,
8def76
+				opts->cmode);
8def76
 }
8def76
 
8def76
 static int dl_argv_parse_put(struct nlmsghdr *nlh, struct dl *dl,
8def76
@@ -1179,6 +1289,8 @@ static void cmd_dev_help(void)
8def76
 	pr_err("                               [ inline-mode { none | link | network | transport } ]\n");
8def76
 	pr_err("                               [ encap { disable | enable } ]\n");
8def76
 	pr_err("       devlink dev eswitch show DEV\n");
8def76
+	pr_err("       devlink dev param set DEV name PARAMETER value VALUE cmode { permanent | driverinit | runtime }\n");
8def76
+	pr_err("       devlink dev param show [DEV name PARAMETER]\n");
8def76
 	pr_err("       devlink dev reload DEV\n");
8def76
 }
8def76
 
8def76
@@ -1393,6 +1505,14 @@ static void pr_out_str(struct dl *dl, const char *name, const char *val)
8def76
 	}
8def76
 }
8def76
 
8def76
+static void pr_out_bool(struct dl *dl, const char *name, bool val)
8def76
+{
8def76
+	if (val)
8def76
+		pr_out_str(dl, name, "true");
8def76
+	else
8def76
+		pr_out_str(dl, name, "false");
8def76
+}
8def76
+
8def76
 static void pr_out_uint(struct dl *dl, const char *name, unsigned int val)
8def76
 {
8def76
 	if (dl->json_output) {
8def76
@@ -1475,6 +1595,19 @@ static void pr_out_entry_end(struct dl *dl)
8def76
 		__pr_out_newline();
8def76
 }
8def76
 
8def76
+static const char *param_cmode_name(uint8_t cmode)
8def76
+{
8def76
+	switch (cmode) {
8def76
+	case DEVLINK_PARAM_CMODE_RUNTIME:
8def76
+		return PARAM_CMODE_RUNTIME_STR;
8def76
+	case DEVLINK_PARAM_CMODE_DRIVERINIT:
8def76
+		return PARAM_CMODE_DRIVERINIT_STR;
8def76
+	case DEVLINK_PARAM_CMODE_PERMANENT:
8def76
+		return PARAM_CMODE_PERMANENT_STR;
8def76
+	default: return "<unknown type>";
8def76
+	}
8def76
+}
8def76
+
8def76
 static const char *eswitch_mode_name(uint32_t mode)
8def76
 {
8def76
 	switch (mode) {
8def76
@@ -1593,6 +1726,304 @@ static int cmd_dev_eswitch(struct dl *dl)
8def76
 	return -ENOENT;
8def76
 }
8def76
 
8def76
+static void pr_out_param_value(struct dl *dl, int nla_type, struct nlattr *nl)
8def76
+{
8def76
+	struct nlattr *nla_value[DEVLINK_ATTR_MAX + 1] = {};
8def76
+	struct nlattr *val_attr;
8def76
+	int err;
8def76
+
8def76
+	err = mnl_attr_parse_nested(nl, attr_cb, nla_value);
8def76
+	if (err != MNL_CB_OK)
8def76
+		return;
8def76
+
8def76
+	if (!nla_value[DEVLINK_ATTR_PARAM_VALUE_CMODE] ||
8def76
+	    (nla_type != MNL_TYPE_FLAG &&
8def76
+	     !nla_value[DEVLINK_ATTR_PARAM_VALUE_DATA]))
8def76
+		return;
8def76
+
8def76
+	pr_out_str(dl, "cmode",
8def76
+		   param_cmode_name(mnl_attr_get_u8(nla_value[DEVLINK_ATTR_PARAM_VALUE_CMODE])));
8def76
+	val_attr = nla_value[DEVLINK_ATTR_PARAM_VALUE_DATA];
8def76
+
8def76
+	switch (nla_type) {
8def76
+	case MNL_TYPE_U8:
8def76
+		pr_out_uint(dl, "value", mnl_attr_get_u8(val_attr));
8def76
+		break;
8def76
+	case MNL_TYPE_U16:
8def76
+		pr_out_uint(dl, "value", mnl_attr_get_u16(val_attr));
8def76
+		break;
8def76
+	case MNL_TYPE_U32:
8def76
+		pr_out_uint(dl, "value", mnl_attr_get_u32(val_attr));
8def76
+		break;
8def76
+	case MNL_TYPE_STRING:
8def76
+		pr_out_str(dl, "value", mnl_attr_get_str(val_attr));
8def76
+		break;
8def76
+	case MNL_TYPE_FLAG:
8def76
+		pr_out_bool(dl, "value", val_attr ? true : false);
8def76
+		break;
8def76
+	}
8def76
+}
8def76
+
8def76
+static void pr_out_param(struct dl *dl, struct nlattr **tb, bool array)
8def76
+{
8def76
+	struct nlattr *nla_param[DEVLINK_ATTR_MAX + 1] = {};
8def76
+	struct nlattr *param_value_attr;
8def76
+	int nla_type;
8def76
+	int err;
8def76
+
8def76
+	err = mnl_attr_parse_nested(tb[DEVLINK_ATTR_PARAM], attr_cb, nla_param);
8def76
+	if (err != MNL_CB_OK)
8def76
+		return;
8def76
+	if (!nla_param[DEVLINK_ATTR_PARAM_NAME] ||
8def76
+	    !nla_param[DEVLINK_ATTR_PARAM_TYPE] ||
8def76
+	    !nla_param[DEVLINK_ATTR_PARAM_VALUES_LIST])
8def76
+		return;
8def76
+
8def76
+	if (array)
8def76
+		pr_out_handle_start_arr(dl, tb);
8def76
+	else
8def76
+		__pr_out_handle_start(dl, tb, true, false);
8def76
+
8def76
+	nla_type = mnl_attr_get_u8(nla_param[DEVLINK_ATTR_PARAM_TYPE]);
8def76
+
8def76
+	pr_out_str(dl, "name",
8def76
+		   mnl_attr_get_str(nla_param[DEVLINK_ATTR_PARAM_NAME]));
8def76
+
8def76
+	if (!nla_param[DEVLINK_ATTR_PARAM_GENERIC])
8def76
+		pr_out_str(dl, "type", "driver-specific");
8def76
+	else
8def76
+		pr_out_str(dl, "type", "generic");
8def76
+
8def76
+	pr_out_array_start(dl, "values");
8def76
+	mnl_attr_for_each_nested(param_value_attr,
8def76
+				 nla_param[DEVLINK_ATTR_PARAM_VALUES_LIST]) {
8def76
+		pr_out_entry_start(dl);
8def76
+		pr_out_param_value(dl, nla_type, param_value_attr);
8def76
+		pr_out_entry_end(dl);
8def76
+	}
8def76
+	pr_out_array_end(dl);
8def76
+	pr_out_handle_end(dl);
8def76
+}
8def76
+
8def76
+static int cmd_dev_param_show_cb(const struct nlmsghdr *nlh, void *data)
8def76
+{
8def76
+	struct genlmsghdr *genl = mnl_nlmsg_get_payload(nlh);
8def76
+	struct nlattr *tb[DEVLINK_ATTR_MAX + 1] = {};
8def76
+	struct dl *dl = data;
8def76
+
8def76
+	mnl_attr_parse(nlh, sizeof(*genl), attr_cb, tb);
8def76
+	if (!tb[DEVLINK_ATTR_BUS_NAME] || !tb[DEVLINK_ATTR_DEV_NAME] ||
8def76
+	    !tb[DEVLINK_ATTR_PARAM])
8def76
+		return MNL_CB_ERROR;
8def76
+	pr_out_param(dl, tb, true);
8def76
+	return MNL_CB_OK;
8def76
+}
8def76
+
8def76
+struct param_ctx {
8def76
+	struct dl *dl;
8def76
+	int nla_type;
8def76
+	union {
8def76
+		uint8_t vu8;
8def76
+		uint16_t vu16;
8def76
+		uint32_t vu32;
8def76
+		const char *vstr;
8def76
+		bool vbool;
8def76
+	} value;
8def76
+};
8def76
+
8def76
+static int cmd_dev_param_set_cb(const struct nlmsghdr *nlh, void *data)
8def76
+{
8def76
+	struct genlmsghdr *genl = mnl_nlmsg_get_payload(nlh);
8def76
+	struct nlattr *nla_param[DEVLINK_ATTR_MAX + 1] = {};
8def76
+	struct nlattr *tb[DEVLINK_ATTR_MAX + 1] = {};
8def76
+	struct nlattr *param_value_attr;
8def76
+	enum devlink_param_cmode cmode;
8def76
+	struct param_ctx *ctx = data;
8def76
+	struct dl *dl = ctx->dl;
8def76
+	int nla_type;
8def76
+	int err;
8def76
+
8def76
+	mnl_attr_parse(nlh, sizeof(*genl), attr_cb, tb);
8def76
+	if (!tb[DEVLINK_ATTR_BUS_NAME] || !tb[DEVLINK_ATTR_DEV_NAME] ||
8def76
+	    !tb[DEVLINK_ATTR_PARAM])
8def76
+		return MNL_CB_ERROR;
8def76
+
8def76
+	err = mnl_attr_parse_nested(tb[DEVLINK_ATTR_PARAM], attr_cb, nla_param);
8def76
+	if (err != MNL_CB_OK)
8def76
+		return MNL_CB_ERROR;
8def76
+
8def76
+	if (!nla_param[DEVLINK_ATTR_PARAM_TYPE] ||
8def76
+	    !nla_param[DEVLINK_ATTR_PARAM_VALUES_LIST])
8def76
+		return MNL_CB_ERROR;
8def76
+
8def76
+	nla_type = mnl_attr_get_u8(nla_param[DEVLINK_ATTR_PARAM_TYPE]);
8def76
+	mnl_attr_for_each_nested(param_value_attr,
8def76
+				 nla_param[DEVLINK_ATTR_PARAM_VALUES_LIST]) {
8def76
+		struct nlattr *nla_value[DEVLINK_ATTR_MAX + 1] = {};
8def76
+		struct nlattr *val_attr;
8def76
+
8def76
+		err = mnl_attr_parse_nested(param_value_attr,
8def76
+					    attr_cb, nla_value);
8def76
+		if (err != MNL_CB_OK)
8def76
+			return MNL_CB_ERROR;
8def76
+
8def76
+		if (!nla_value[DEVLINK_ATTR_PARAM_VALUE_CMODE] ||
8def76
+		    (nla_type != MNL_TYPE_FLAG &&
8def76
+		     !nla_value[DEVLINK_ATTR_PARAM_VALUE_DATA]))
8def76
+			return MNL_CB_ERROR;
8def76
+
8def76
+		cmode = mnl_attr_get_u8(nla_value[DEVLINK_ATTR_PARAM_VALUE_CMODE]);
8def76
+		if (cmode == dl->opts.cmode) {
8def76
+			val_attr = nla_value[DEVLINK_ATTR_PARAM_VALUE_DATA];
8def76
+			switch (nla_type) {
8def76
+			case MNL_TYPE_U8:
8def76
+				ctx->value.vu8 = mnl_attr_get_u8(val_attr);
8def76
+				break;
8def76
+			case MNL_TYPE_U16:
8def76
+				ctx->value.vu16 = mnl_attr_get_u16(val_attr);
8def76
+				break;
8def76
+			case MNL_TYPE_U32:
8def76
+				ctx->value.vu32 = mnl_attr_get_u32(val_attr);
8def76
+				break;
8def76
+			case MNL_TYPE_STRING:
8def76
+				ctx->value.vstr = mnl_attr_get_str(val_attr);
8def76
+				break;
8def76
+			case MNL_TYPE_FLAG:
8def76
+				ctx->value.vbool = val_attr ? true : false;
8def76
+				break;
8def76
+			}
8def76
+			break;
8def76
+		}
8def76
+	}
8def76
+	ctx->nla_type = nla_type;
8def76
+	return MNL_CB_OK;
8def76
+}
8def76
+
8def76
+static int cmd_dev_param_set(struct dl *dl)
8def76
+{
8def76
+	struct param_ctx ctx = {};
8def76
+	struct nlmsghdr *nlh;
8def76
+	uint32_t val_u32;
8def76
+	uint16_t val_u16;
8def76
+	uint8_t val_u8;
8def76
+	bool val_bool;
8def76
+	int err;
8def76
+
8def76
+	err = dl_argv_parse(dl, DL_OPT_HANDLE |
8def76
+			    DL_OPT_PARAM_NAME |
8def76
+			    DL_OPT_PARAM_VALUE |
8def76
+			    DL_OPT_PARAM_CMODE, 0);
8def76
+	if (err)
8def76
+		return err;
8def76
+
8def76
+	/* Get value type */
8def76
+	nlh = mnlg_msg_prepare(dl->nlg, DEVLINK_CMD_PARAM_GET,
8def76
+			       NLM_F_REQUEST | NLM_F_ACK);
8def76
+	dl_opts_put(nlh, dl);
8def76
+
8def76
+	ctx.dl = dl;
8def76
+	err = _mnlg_socket_sndrcv(dl->nlg, nlh, cmd_dev_param_set_cb, &ctx;;
8def76
+	if (err)
8def76
+		return err;
8def76
+
8def76
+	nlh = mnlg_msg_prepare(dl->nlg, DEVLINK_CMD_PARAM_SET,
8def76
+			       NLM_F_REQUEST | NLM_F_ACK);
8def76
+	dl_opts_put(nlh, dl);
8def76
+
8def76
+	mnl_attr_put_u8(nlh, DEVLINK_ATTR_PARAM_TYPE, ctx.nla_type);
8def76
+	switch (ctx.nla_type) {
8def76
+	case MNL_TYPE_U8:
8def76
+		err = strtouint8_t(dl->opts.param_value, &val_u8);
8def76
+		if (err)
8def76
+			goto err_param_value_parse;
8def76
+		if (val_u8 == ctx.value.vu8)
8def76
+			return 0;
8def76
+		mnl_attr_put_u8(nlh, DEVLINK_ATTR_PARAM_VALUE_DATA, val_u8);
8def76
+		break;
8def76
+	case MNL_TYPE_U16:
8def76
+		err = strtouint16_t(dl->opts.param_value, &val_u16);
8def76
+		if (err)
8def76
+			goto err_param_value_parse;
8def76
+		if (val_u16 == ctx.value.vu16)
8def76
+			return 0;
8def76
+		mnl_attr_put_u16(nlh, DEVLINK_ATTR_PARAM_VALUE_DATA, val_u16);
8def76
+		break;
8def76
+	case MNL_TYPE_U32:
8def76
+		err = strtouint32_t(dl->opts.param_value, &val_u32);
8def76
+		if (err)
8def76
+			goto err_param_value_parse;
8def76
+		if (val_u32 == ctx.value.vu32)
8def76
+			return 0;
8def76
+		mnl_attr_put_u32(nlh, DEVLINK_ATTR_PARAM_VALUE_DATA, val_u32);
8def76
+		break;
8def76
+	case MNL_TYPE_FLAG:
8def76
+		err = strtobool(dl->opts.param_value, &val_bool);
8def76
+		if (err)
8def76
+			goto err_param_value_parse;
8def76
+		if (val_bool == ctx.value.vbool)
8def76
+			return 0;
8def76
+		if (val_bool)
8def76
+			mnl_attr_put(nlh, DEVLINK_ATTR_PARAM_VALUE_DATA,
8def76
+				     0, NULL);
8def76
+		break;
8def76
+	case MNL_TYPE_STRING:
8def76
+		mnl_attr_put_strz(nlh, DEVLINK_ATTR_PARAM_VALUE_DATA,
8def76
+				  dl->opts.param_value);
8def76
+		if (!strcmp(dl->opts.param_value, ctx.value.vstr))
8def76
+			return 0;
8def76
+		break;
8def76
+	default:
8def76
+		printf("Value type not supported\n");
8def76
+		return -ENOTSUP;
8def76
+	}
8def76
+	return _mnlg_socket_sndrcv(dl->nlg, nlh, NULL, NULL);
8def76
+
8def76
+err_param_value_parse:
8def76
+	pr_err("Value \"%s\" is not a number or not within range\n",
8def76
+	       dl->opts.param_value);
8def76
+	return err;
8def76
+}
8def76
+
8def76
+static int cmd_dev_param_show(struct dl *dl)
8def76
+{
8def76
+	uint16_t flags = NLM_F_REQUEST | NLM_F_ACK;
8def76
+	struct nlmsghdr *nlh;
8def76
+	int err;
8def76
+
8def76
+	if (dl_argc(dl) == 0)
8def76
+		flags |= NLM_F_DUMP;
8def76
+
8def76
+	nlh = mnlg_msg_prepare(dl->nlg, DEVLINK_CMD_PARAM_GET, flags);
8def76
+
8def76
+	if (dl_argc(dl) > 0) {
8def76
+		err = dl_argv_parse_put(nlh, dl, DL_OPT_HANDLE |
8def76
+					DL_OPT_PARAM_NAME, 0);
8def76
+		if (err)
8def76
+			return err;
8def76
+	}
8def76
+
8def76
+	pr_out_section_start(dl, "param");
8def76
+	err = _mnlg_socket_sndrcv(dl->nlg, nlh, cmd_dev_param_show_cb, dl);
8def76
+	pr_out_section_end(dl);
8def76
+	return err;
8def76
+}
8def76
+
8def76
+static int cmd_dev_param(struct dl *dl)
8def76
+{
8def76
+	if (dl_argv_match(dl, "help")) {
8def76
+		cmd_dev_help();
8def76
+		return 0;
8def76
+	} else if (dl_argv_match(dl, "show") ||
8def76
+		   dl_argv_match(dl, "list") || dl_no_arg(dl)) {
8def76
+		dl_arg_inc(dl);
8def76
+		return cmd_dev_param_show(dl);
8def76
+	} else if (dl_argv_match(dl, "set")) {
8def76
+		dl_arg_inc(dl);
8def76
+		return cmd_dev_param_set(dl);
8def76
+	}
8def76
+	pr_err("Command \"%s\" not found\n", dl_argv(dl));
8def76
+	return -ENOENT;
8def76
+}
8def76
 static int cmd_dev_show_cb(const struct nlmsghdr *nlh, void *data)
8def76
 {
8def76
 	struct dl *dl = data;
8def76
@@ -1669,6 +2100,9 @@ static int cmd_dev(struct dl *dl)
8def76
 	} else if (dl_argv_match(dl, "reload")) {
8def76
 		dl_arg_inc(dl);
8def76
 		return cmd_dev_reload(dl);
8def76
+	} else if (dl_argv_match(dl, "param")) {
8def76
+		dl_arg_inc(dl);
8def76
+		return cmd_dev_param(dl);
8def76
 	}
8def76
 	pr_err("Command \"%s\" not found\n", dl_argv(dl));
8def76
 	return -ENOENT;
8def76
@@ -2632,6 +3066,10 @@ static const char *cmd_name(uint8_t cmd)
8def76
 	case DEVLINK_CMD_PORT_SET: return "set";
8def76
 	case DEVLINK_CMD_PORT_NEW: return "new";
8def76
 	case DEVLINK_CMD_PORT_DEL: return "del";
8def76
+	case DEVLINK_CMD_PARAM_GET: return "get";
8def76
+	case DEVLINK_CMD_PARAM_SET: return "set";
8def76
+	case DEVLINK_CMD_PARAM_NEW: return "new";
8def76
+	case DEVLINK_CMD_PARAM_DEL: return "del";
8def76
 	default: return "<unknown cmd>";
8def76
 	}
8def76
 }
8def76
@@ -2650,6 +3088,11 @@ static const char *cmd_obj(uint8_t cmd)
8def76
 	case DEVLINK_CMD_PORT_NEW:
8def76
 	case DEVLINK_CMD_PORT_DEL:
8def76
 		return "port";
8def76
+	case DEVLINK_CMD_PARAM_GET:
8def76
+	case DEVLINK_CMD_PARAM_SET:
8def76
+	case DEVLINK_CMD_PARAM_NEW:
8def76
+	case DEVLINK_CMD_PARAM_DEL:
8def76
+		return "param";
8def76
 	default: return "<unknown obj>";
8def76
 	}
8def76
 }
8def76
@@ -2706,6 +3149,17 @@ static int cmd_mon_show_cb(const struct nlmsghdr *nlh, void *data)
8def76
 		pr_out_mon_header(genl->cmd);
8def76
 		pr_out_port(dl, tb);
8def76
 		break;
8def76
+	case DEVLINK_CMD_PARAM_GET: /* fall through */
8def76
+	case DEVLINK_CMD_PARAM_SET: /* fall through */
8def76
+	case DEVLINK_CMD_PARAM_NEW: /* fall through */
8def76
+	case DEVLINK_CMD_PARAM_DEL:
8def76
+		mnl_attr_parse(nlh, sizeof(*genl), attr_cb, tb);
8def76
+		if (!tb[DEVLINK_ATTR_BUS_NAME] || !tb[DEVLINK_ATTR_DEV_NAME] ||
8def76
+		    !tb[DEVLINK_ATTR_PARAM])
8def76
+			return MNL_CB_ERROR;
8def76
+		pr_out_mon_header(genl->cmd);
8def76
+		pr_out_param(dl, tb, false);
8def76
+		break;
8def76
 	}
8def76
 	return MNL_CB_OK;
8def76
 }
8def76
diff --git a/man/man8/devlink-dev.8 b/man/man8/devlink-dev.8
8def76
index 7c749ddabaeeb..d985da172aa05 100644
8def76
--- a/man/man8/devlink-dev.8
8def76
+++ b/man/man8/devlink-dev.8
8def76
@@ -42,6 +42,23 @@ devlink-dev \- devlink device configuration
8def76
 .BR "devlink dev eswitch show"
8def76
 .IR DEV
8def76
 
8def76
+.ti -8
8def76
+.BR "devlink dev param set"
8def76
+.IR DEV
8def76
+.BR name
8def76
+.IR PARAMETER
8def76
+.BR value
8def76
+.IR VALUE
8def76
+.BR cmode " { " runtime " | " driverinit " | " permanent " } "
8def76
+
8def76
+.ti -8
8def76
+.BR "devlink dev param show"
8def76
+.RI "[ "
8def76
+.IR DEV
8def76
+.BR name
8def76
+.IR PARAMETER
8def76
+.RI "]"
8def76
+
8def76
 .ti -8
8def76
 .BR "devlink dev reload"
8def76
 .IR DEV
8def76
@@ -98,6 +115,36 @@ Set eswitch encapsulation support
8def76
 .I enable
8def76
 - Enable encapsulation support
8def76
 
8def76
+.SS devlink dev param set  - set new value to devlink device configuration parameter
8def76
+
8def76
+.TP
8def76
+.BI name " PARAMETER"
8def76
+Specify parameter name to set.
8def76
+
8def76
+.TP
8def76
+.BI value " VALUE"
8def76
+New value to set.
8def76
+
8def76
+.TP
8def76
+.BR cmode " { " runtime " | " driverinit " | " permanent " } "
8def76
+Configuration mode in which the new value is set.
8def76
+
8def76
+.I runtime
8def76
+- Set new value while driver is running. This configuration mode doesn't require any reset to apply the new value.
8def76
+
8def76
+.I driverinit
8def76
+- Set new value which will be applied during driver initialization. This configuration mode requires restart driver by devlink reload command to apply the new value.
8def76
+
8def76
+.I permanent
8def76
+- New value is written to device's non-volatile memory. This configuration mode requires hard reset to apply the new value.
8def76
+
8def76
+.SS devlink dev param show - display devlink device supported configuration parameters attributes
8def76
+
8def76
+.BR name
8def76
+.IR PARAMETER
8def76
+Specify parameter name to show.
8def76
+If this argument is omitted all parameters supported by devlink devices are listed.
8def76
+
8def76
 .SS devlink dev reload - perform hot reload of the driver.
8def76
 
8def76
 .PP
8def76
@@ -126,6 +173,16 @@ devlink dev eswitch set pci/0000:01:00.0 mode switchdev
8def76
 Sets the eswitch mode of specified devlink device to switchdev.
8def76
 .RE
8def76
 .PP
8def76
+devlink dev param show pci/0000:01:00.0 name max_macs
8def76
+.RS 4
8def76
+Shows the parameter max_macs attributes.
8def76
+.RE
8def76
+.PP
8def76
+devlink dev param set pci/0000:01:00.0 name internal_error_reset value true cmode runtime
8def76
+.RS 4
8def76
+Sets the parameter internal_error_reset of specified devlink device to true.
8def76
+.RE
8def76
+.PP
8def76
 devlink dev reload pci/0000:01:00.0
8def76
 .RS 4
8def76
 Performs hot reload of specified devlink device.
8def76
-- 
8def76
2.20.1
8def76