mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-25 23:21:33 +03:00
mount: change find_loop_device() error code when no loop device is found to ENXIO
ENOENT is a bit too likely to be returned for various reasons, for example if /sys or /proc are not mounted and hence the files we need not around. Hence, let's use ENXIO instead, which is equally fitting for the purpose but has the benefit that the underlying calls won't generate this error on their own, hence any ambiguity is removed.
This commit is contained in:
parent
a53dceb709
commit
aa46fa6420
@ -795,7 +795,7 @@ static int find_loop_device(const char *backing_file, char **loop_dev) {
|
||||
}
|
||||
|
||||
if (!l)
|
||||
return -ENOENT;
|
||||
return -ENXIO;
|
||||
|
||||
*loop_dev = l;
|
||||
l = NULL; /* avoid freeing */
|
||||
@ -954,7 +954,7 @@ static int umount_loop(sd_bus *bus, const char *backing_file) {
|
||||
|
||||
r = find_loop_device(backing_file, &loop_dev);
|
||||
if (r < 0)
|
||||
return log_error_errno(r, r == -ENOENT ? "File %s is not mounted." : "Can't get loop device for %s: %m", backing_file);
|
||||
return log_error_errno(r, r == -ENXIO ? "File %s is not mounted." : "Can't get loop device for %s: %m", backing_file);
|
||||
|
||||
return umount_by_device(bus, loop_dev);
|
||||
}
|
||||
@ -1229,10 +1229,10 @@ static int discover_loop_backing_file(void) {
|
||||
int r;
|
||||
|
||||
r = find_loop_device(arg_mount_what, &loop_dev);
|
||||
if (r < 0 && r != -ENOENT)
|
||||
if (r < 0 && r != -ENXIO)
|
||||
return log_error_errno(errno, "Can't get loop device for %s: %m", arg_mount_what);
|
||||
|
||||
if (r == -ENOENT) {
|
||||
if (r == -ENXIO) {
|
||||
_cleanup_free_ char *escaped = NULL;
|
||||
|
||||
if (arg_mount_where)
|
||||
|
Loading…
Reference in New Issue
Block a user