mirror of
https://github.com/torvalds/linux.git
synced 2026-05-30 01:53:29 +02:00
netlink: specs: devlink: remove reload-action from devlink-get cmd reply
devlink-get command does not contain reload-action attr in reply. Remove it. Signed-off-by: Jiri Pirko <jiri@nvidia.com> Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Link: https://lore.kernel.org/r/20231021112711.660606-5-jiri@resnulli.us Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
2260d39cd0
commit
c48066b0cc
|
|
@ -263,7 +263,6 @@ operations:
|
|||
- bus-name
|
||||
- dev-name
|
||||
- reload-failed
|
||||
- reload-action
|
||||
- dev-stats
|
||||
dump:
|
||||
reply: *get-reply
|
||||
|
|
|
|||
|
|
@ -475,11 +475,6 @@ int devlink_get_rsp_parse(const struct nlmsghdr *nlh, void *data)
|
|||
return MNL_CB_ERROR;
|
||||
dst->_present.reload_failed = 1;
|
||||
dst->reload_failed = mnl_attr_get_u8(attr);
|
||||
} else if (type == DEVLINK_ATTR_RELOAD_ACTION) {
|
||||
if (ynl_attr_validate(yarg, attr))
|
||||
return MNL_CB_ERROR;
|
||||
dst->_present.reload_action = 1;
|
||||
dst->reload_action = mnl_attr_get_u8(attr);
|
||||
} else if (type == DEVLINK_ATTR_DEV_STATS) {
|
||||
if (ynl_attr_validate(yarg, attr))
|
||||
return MNL_CB_ERROR;
|
||||
|
|
|
|||
|
|
@ -112,14 +112,12 @@ struct devlink_get_rsp {
|
|||
__u32 bus_name_len;
|
||||
__u32 dev_name_len;
|
||||
__u32 reload_failed:1;
|
||||
__u32 reload_action:1;
|
||||
__u32 dev_stats:1;
|
||||
} _present;
|
||||
|
||||
char *bus_name;
|
||||
char *dev_name;
|
||||
__u8 reload_failed;
|
||||
__u8 reload_action;
|
||||
struct devlink_dl_dev_stats dev_stats;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user