mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
devlink: Move size validation to core
Currently the size validation is done via a cb, which is unneeded. The size validation can be moved to core. The next patch will perform cleanup. Signed-off-by: Arkadi Sharshevsky <arkadis@mellanox.com> Signed-off-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
b99fe0e28f
commit
cc944ead83
@ -2338,6 +2338,32 @@ out:
|
||||
resource->size_valid = size_valid;
|
||||
}
|
||||
|
||||
static int
|
||||
devlink_resource_validate_size(struct devlink_resource *resource, u64 size,
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
u64 reminder;
|
||||
int err = 0;
|
||||
|
||||
if (size > resource->size_params->size_max) {
|
||||
NL_SET_ERR_MSG_MOD(extack, "Size larger than maximum");
|
||||
err = -EINVAL;
|
||||
}
|
||||
|
||||
if (size < resource->size_params->size_min) {
|
||||
NL_SET_ERR_MSG_MOD(extack, "Size smaller than minimum");
|
||||
err = -EINVAL;
|
||||
}
|
||||
|
||||
div64_u64_rem(size, resource->size_params->size_granularity, &reminder);
|
||||
if (reminder) {
|
||||
NL_SET_ERR_MSG_MOD(extack, "Wrong granularity");
|
||||
err = -EINVAL;
|
||||
}
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
static int devlink_nl_cmd_resource_set(struct sk_buff *skb,
|
||||
struct genl_info *info)
|
||||
{
|
||||
@ -2356,12 +2382,8 @@ static int devlink_nl_cmd_resource_set(struct sk_buff *skb,
|
||||
if (!resource)
|
||||
return -EINVAL;
|
||||
|
||||
if (!resource->resource_ops->size_validate)
|
||||
return -EINVAL;
|
||||
|
||||
size = nla_get_u64(info->attrs[DEVLINK_ATTR_RESOURCE_SIZE]);
|
||||
err = resource->resource_ops->size_validate(devlink, size,
|
||||
info->extack);
|
||||
err = devlink_resource_validate_size(resource, size, info->extack);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user