devlink: use -ENOSPC to indicate no more room for snapshots

The devlink_region_snapshot_create function returns -ENOMEM when the
maximum number of snapshots has been reached. This is confusing because
it is not an issue of being out of memory. Change this to use -ENOSPC
instead.

Reported-by: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Reviewed-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Jacob Keller 2020-03-26 11:37:12 -07:00 коммит произвёл David S. Miller
Родитель cf80faee79
Коммит 47a39f6105
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3793,7 +3793,7 @@ __devlink_region_snapshot_create(struct devlink_region *region,
/* check if region can hold one more snapshot */ /* check if region can hold one more snapshot */
if (region->cur_snapshots == region->max_snapshots) if (region->cur_snapshots == region->max_snapshots)
return -ENOMEM; return -ENOSPC;
if (devlink_region_snapshot_get_by_id(region, snapshot_id)) if (devlink_region_snapshot_get_by_id(region, snapshot_id))
return -EEXIST; return -EEXIST;