mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
netlink: specs: devlink: add forgotten port function caps enum values
Add two enum values that the blamed commit omitted.
Fixes: f2f9dd164d
("netlink: specs: devlink: add the remaining command to generate complete split_ops")
Signed-off-by: Jiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20231030161750.110420-1-jiri@resnulli.us
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
5ed8499b64
commit
05f0431bb9
@ -71,6 +71,10 @@ definitions:
|
||||
name: roce-bit
|
||||
-
|
||||
name: migratable-bit
|
||||
-
|
||||
name: ipsec-crypto-bit
|
||||
-
|
||||
name: ipsec-packet-bit
|
||||
-
|
||||
type: enum
|
||||
name: sb-threshold-type
|
||||
|
@ -15,7 +15,7 @@ const struct nla_policy devlink_dl_port_function_nl_policy[DEVLINK_PORT_FN_ATTR_
|
||||
[DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR] = { .type = NLA_BINARY, },
|
||||
[DEVLINK_PORT_FN_ATTR_STATE] = NLA_POLICY_MAX(NLA_U8, 1),
|
||||
[DEVLINK_PORT_FN_ATTR_OPSTATE] = NLA_POLICY_MAX(NLA_U8, 1),
|
||||
[DEVLINK_PORT_FN_ATTR_CAPS] = NLA_POLICY_BITFIELD32(3),
|
||||
[DEVLINK_PORT_FN_ATTR_CAPS] = NLA_POLICY_BITFIELD32(15),
|
||||
};
|
||||
|
||||
const struct nla_policy devlink_dl_selftest_id_nl_policy[DEVLINK_ATTR_SELFTEST_ID_FLASH + 1] = {
|
||||
|
@ -121,6 +121,8 @@ const char *devlink_port_fn_opstate_str(enum devlink_port_fn_opstate value)
|
||||
static const char * const devlink_port_fn_attr_cap_strmap[] = {
|
||||
[0] = "roce-bit",
|
||||
[1] = "migratable-bit",
|
||||
[2] = "ipsec-crypto-bit",
|
||||
[3] = "ipsec-packet-bit",
|
||||
};
|
||||
|
||||
const char *devlink_port_fn_attr_cap_str(enum devlink_port_fn_attr_cap value)
|
||||
|
Loading…
Reference in New Issue
Block a user