block/raw-win32: Employ error parameter
Make use of the error parameter in the opening and creating functions in block/raw-win32.c. Signed-off-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
92f1deec31
commit
c6252b7cea
@ -251,8 +251,7 @@ static int raw_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
opts = qemu_opts_create_nofail(&raw_runtime_opts);
|
opts = qemu_opts_create_nofail(&raw_runtime_opts);
|
||||||
qemu_opts_absorb_qdict(opts, options, &local_err);
|
qemu_opts_absorb_qdict(opts, options, &local_err);
|
||||||
if (error_is_set(&local_err)) {
|
if (error_is_set(&local_err)) {
|
||||||
qerror_report_err(local_err);
|
error_propagate(errp, local_err);
|
||||||
error_free(local_err);
|
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
@ -264,6 +263,7 @@ static int raw_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
if ((flags & BDRV_O_NATIVE_AIO) && aio == NULL) {
|
if ((flags & BDRV_O_NATIVE_AIO) && aio == NULL) {
|
||||||
aio = win32_aio_init();
|
aio = win32_aio_init();
|
||||||
if (aio == NULL) {
|
if (aio == NULL) {
|
||||||
|
error_setg(errp, "Could not initialize AIO");
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
@ -280,6 +280,7 @@ static int raw_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
} else {
|
} else {
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
}
|
}
|
||||||
|
error_setg_errno(errp, -ret, "Could not open file");
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -287,6 +288,7 @@ static int raw_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
ret = win32_aio_attach(aio, s->hfile);
|
ret = win32_aio_attach(aio, s->hfile);
|
||||||
if (ret < 0) {
|
if (ret < 0) {
|
||||||
CloseHandle(s->hfile);
|
CloseHandle(s->hfile);
|
||||||
|
error_setg_errno(errp, -ret, "Could not enable AIO");
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
s->aio = aio;
|
s->aio = aio;
|
||||||
@ -438,8 +440,10 @@ static int raw_create(const char *filename, QEMUOptionParameter *options,
|
|||||||
|
|
||||||
fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
|
fd = qemu_open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY,
|
||||||
0644);
|
0644);
|
||||||
if (fd < 0)
|
if (fd < 0) {
|
||||||
|
error_setg_errno(errp, errno, "Could not create file");
|
||||||
return -EIO;
|
return -EIO;
|
||||||
|
}
|
||||||
set_sparse(fd);
|
set_sparse(fd);
|
||||||
ftruncate(fd, total_size * 512);
|
ftruncate(fd, total_size * 512);
|
||||||
qemu_close(fd);
|
qemu_close(fd);
|
||||||
@ -550,8 +554,7 @@ static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
QemuOpts *opts = qemu_opts_create_nofail(&raw_runtime_opts);
|
QemuOpts *opts = qemu_opts_create_nofail(&raw_runtime_opts);
|
||||||
qemu_opts_absorb_qdict(opts, options, &local_err);
|
qemu_opts_absorb_qdict(opts, options, &local_err);
|
||||||
if (error_is_set(&local_err)) {
|
if (error_is_set(&local_err)) {
|
||||||
qerror_report_err(local_err);
|
error_propagate(errp, local_err);
|
||||||
error_free(local_err);
|
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
@ -560,6 +563,7 @@ static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
|
|
||||||
if (strstart(filename, "/dev/cdrom", NULL)) {
|
if (strstart(filename, "/dev/cdrom", NULL)) {
|
||||||
if (find_cdrom(device_name, sizeof(device_name)) < 0) {
|
if (find_cdrom(device_name, sizeof(device_name)) < 0) {
|
||||||
|
error_setg(errp, "Could not open CD-ROM drive");
|
||||||
ret = -ENOENT;
|
ret = -ENOENT;
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
@ -586,8 +590,10 @@ static int hdev_open(BlockDriverState *bs, QDict *options, int flags,
|
|||||||
int err = GetLastError();
|
int err = GetLastError();
|
||||||
|
|
||||||
if (err == ERROR_ACCESS_DENIED) {
|
if (err == ERROR_ACCESS_DENIED) {
|
||||||
|
error_setg_errno(errp, EACCES, "Could not open device");
|
||||||
ret = -EACCES;
|
ret = -EACCES;
|
||||||
} else {
|
} else {
|
||||||
|
error_setg(errp, "Could not open device");
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
goto done;
|
goto done;
|
||||||
|
Loading…
Reference in New Issue
Block a user