* [Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 2/9] rng-random: use error_setg_file_open() Luiz Capitulino
` (8 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
include/qapi/error.h | 5 +++++
util/error.c | 5 +++++
2 files changed, 10 insertions(+)
diff --git a/include/qapi/error.h b/include/qapi/error.h
index 5cd2f0c..ffd1cea 100644
--- a/include/qapi/error.h
+++ b/include/qapi/error.h
@@ -45,6 +45,11 @@ void error_set_errno(Error **err, int os_error, ErrorClass err_class, const char
error_set_errno(err, os_error, ERROR_CLASS_GENERIC_ERROR, fmt, ## __VA_ARGS__)
/**
+ * Helper for open() errors
+ */
+void error_setg_file_open(Error **errp, int os_errno, const char *filename);
+
+/**
* Returns true if an indirect pointer to an error is pointing to a valid
* error object.
*/
diff --git a/util/error.c b/util/error.c
index 519f6b6..53b0435 100644
--- a/util/error.c
+++ b/util/error.c
@@ -71,6 +71,11 @@ void error_set_errno(Error **errp, int os_errno, ErrorClass err_class,
*errp = err;
}
+void error_setg_file_open(Error **errp, int os_errno, const char *filename)
+{
+ error_setg_errno(errp, os_errno, "Could not open '%s'", filename);
+}
+
Error *error_copy(const Error *err)
{
Error *err_new;
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 2/9] rng-random: use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 3/9] block: mirror_complete(): " Luiz Capitulino
` (7 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
backends/rng-random.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/backends/rng-random.c b/backends/rng-random.c
index 830360c..68dfc8a 100644
--- a/backends/rng-random.c
+++ b/backends/rng-random.c
@@ -78,9 +78,8 @@ static void rng_random_opened(RngBackend *b, Error **errp)
"filename", "a valid filename");
} else {
s->fd = qemu_open(s->filename, O_RDONLY | O_NONBLOCK);
-
if (s->fd == -1) {
- error_set(errp, QERR_OPEN_FILE_FAILED, s->filename);
+ error_setg_file_open(errp, errno, s->filename);
}
}
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 3/9] block: mirror_complete(): use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 1/9] error: add error_setg_file_open() helper Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 2/9] rng-random: use error_setg_file_open() Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 4/9] blockdev: " Luiz Capitulino
` (6 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
block/mirror.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block/mirror.c b/block/mirror.c
index 8b07dec..1ae724f 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -512,7 +512,7 @@ static void mirror_complete(BlockJob *job, Error **errp)
char backing_filename[PATH_MAX];
bdrv_get_full_backing_filename(s->target, backing_filename,
sizeof(backing_filename));
- error_set(errp, QERR_OPEN_FILE_FAILED, backing_filename);
+ error_setg_file_open(errp, -ret, backing_filename);
return;
}
if (!s->synced) {
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 4/9] blockdev: use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (2 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 3/9] block: mirror_complete(): " Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 5/9] cpus: " Luiz Capitulino
` (5 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
blockdev.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/blockdev.c b/blockdev.c
index 9937311..5975dde 100644
--- a/blockdev.c
+++ b/blockdev.c
@@ -899,7 +899,7 @@ static void external_snapshot_prepare(BlkTransactionStates *common,
ret = bdrv_open(states->new_bs, new_image_file, NULL,
flags | BDRV_O_NO_BACKING, drv);
if (ret != 0) {
- error_set(errp, QERR_OPEN_FILE_FAILED, new_image_file);
+ error_setg_file_open(errp, -ret, new_image_file);
}
}
@@ -1062,8 +1062,11 @@ static void qmp_bdrv_open_encrypted(BlockDriverState *bs, const char *filename,
int bdrv_flags, BlockDriver *drv,
const char *password, Error **errp)
{
- if (bdrv_open(bs, filename, NULL, bdrv_flags, drv) < 0) {
- error_set(errp, QERR_OPEN_FILE_FAILED, filename);
+ int ret;
+
+ ret = bdrv_open(bs, filename, NULL, bdrv_flags, drv);
+ if (ret < 0) {
+ error_setg_file_open(errp, -ret, filename);
return;
}
@@ -1483,7 +1486,7 @@ void qmp_drive_mirror(const char *device, const char *target,
if (ret < 0) {
bdrv_delete(target_bs);
- error_set(errp, QERR_OPEN_FILE_FAILED, target);
+ error_setg_file_open(errp, -ret, target);
return;
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 5/9] cpus: use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (3 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 4/9] blockdev: " Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 6/9] dump: qmp_dump_guest_memory(): " Luiz Capitulino
` (4 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
cpus.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cpus.c b/cpus.c
index c232265..c8bc8ad 100644
--- a/cpus.c
+++ b/cpus.c
@@ -1278,7 +1278,7 @@ void qmp_memsave(int64_t addr, int64_t size, const char *filename,
f = fopen(filename, "wb");
if (!f) {
- error_set(errp, QERR_OPEN_FILE_FAILED, filename);
+ error_setg_file_open(errp, errno, filename);
return;
}
@@ -1308,7 +1308,7 @@ void qmp_pmemsave(int64_t addr, int64_t size, const char *filename,
f = fopen(filename, "wb");
if (!f) {
- error_set(errp, QERR_OPEN_FILE_FAILED, filename);
+ error_setg_file_open(errp, errno, filename);
return;
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 6/9] dump: qmp_dump_guest_memory(): use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (4 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 5/9] cpus: " Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 7/9] savevm: qmp_xen_save_devices_state(): " Luiz Capitulino
` (3 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
dump.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dump.c b/dump.c
index 44a1339..c812cfa 100644
--- a/dump.c
+++ b/dump.c
@@ -853,7 +853,7 @@ void qmp_dump_guest_memory(bool paging, const char *file, bool has_begin,
if (strstart(file, "file:", &p)) {
fd = qemu_open(p, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR);
if (fd < 0) {
- error_set(errp, QERR_OPEN_FILE_FAILED, p);
+ error_setg_file_open(errp, errno, p);
return;
}
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 7/9] savevm: qmp_xen_save_devices_state(): use error_setg_file_open()
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (5 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 6/9] dump: qmp_dump_guest_memory(): " Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 8/9] block: bdrv_reopen_prepare(): don't use QERR_OPEN_FILE_FAILED Luiz Capitulino
` (2 subsequent siblings)
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
savevm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/savevm.c b/savevm.c
index 2ce439f..ff5ece6 100644
--- a/savevm.c
+++ b/savevm.c
@@ -2410,7 +2410,7 @@ void qmp_xen_save_devices_state(const char *filename, Error **errp)
f = qemu_fopen(filename, "wb");
if (!f) {
- error_set(errp, QERR_OPEN_FILE_FAILED, filename);
+ error_setg_file_open(errp, errno, filename);
goto the_end;
}
ret = qemu_save_device_state(f);
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 8/9] block: bdrv_reopen_prepare(): don't use QERR_OPEN_FILE_FAILED
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (6 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 7/9] savevm: qmp_xen_save_devices_state(): " Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 15:57 ` [Qemu-devel] [PULL 9/9] qerror: drop QERR_OPEN_FILE_FAILED macro Luiz Capitulino
2013-06-17 21:17 ` [Qemu-devel] [PULL 0/9] QMP queue Anthony Liguori
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
The call to drv->bdrv_reopen_prepare() can fail due to reasons
other than an open failure. Unfortunately, we can't use errno
nor -ret, cause they are not always set.
Stick to a generic error message then.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
block.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/block.c b/block.c
index 79ad33d..b88ad2f 100644
--- a/block.c
+++ b/block.c
@@ -1291,8 +1291,8 @@ int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
if (local_err != NULL) {
error_propagate(errp, local_err);
} else {
- error_set(errp, QERR_OPEN_FILE_FAILED,
- reopen_state->bs->filename);
+ error_setg(errp, "failed while preparing to reopen image '%s'",
+ reopen_state->bs->filename);
}
goto error;
}
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* [Qemu-devel] [PULL 9/9] qerror: drop QERR_OPEN_FILE_FAILED macro
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (7 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 8/9] block: bdrv_reopen_prepare(): don't use QERR_OPEN_FILE_FAILED Luiz Capitulino
@ 2013-06-17 15:57 ` Luiz Capitulino
2013-06-17 21:17 ` [Qemu-devel] [PULL 0/9] QMP queue Anthony Liguori
9 siblings, 0 replies; 16+ messages in thread
From: Luiz Capitulino @ 2013-06-17 15:57 UTC (permalink / raw)
To: qemu-devel; +Cc: aliguori
Not used since the last commit.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Acked-by: Kevin Wolf <kwolf@redhat.com>
---
include/qapi/qmp/qerror.h | 3 ---
1 file changed, 3 deletions(-)
diff --git a/include/qapi/qmp/qerror.h b/include/qapi/qmp/qerror.h
index 6c0a18d..c30c2f6 100644
--- a/include/qapi/qmp/qerror.h
+++ b/include/qapi/qmp/qerror.h
@@ -177,9 +177,6 @@ void assert_no_error(Error *err);
#define QERR_NOT_SUPPORTED \
ERROR_CLASS_GENERIC_ERROR, "Not supported"
-#define QERR_OPEN_FILE_FAILED \
- ERROR_CLASS_GENERIC_ERROR, "Could not open '%s'"
-
#define QERR_PERMISSION_DENIED \
ERROR_CLASS_GENERIC_ERROR, "Insufficient permission to perform this operation"
--
1.8.1.4
^ permalink raw reply related [flat|nested] 16+ messages in thread
* Re: [Qemu-devel] [PULL 0/9] QMP queue
2013-06-17 15:57 [Qemu-devel] [PULL 0/9] QMP queue Luiz Capitulino
` (8 preceding siblings ...)
2013-06-17 15:57 ` [Qemu-devel] [PULL 9/9] qerror: drop QERR_OPEN_FILE_FAILED macro Luiz Capitulino
@ 2013-06-17 21:17 ` Anthony Liguori
9 siblings, 0 replies; 16+ messages in thread
From: Anthony Liguori @ 2013-06-17 21:17 UTC (permalink / raw)
To: Luiz Capitulino, qemu-devel; +Cc: aliguori
Pulled. Thanks.
Regards,
Anthony Liguori
^ permalink raw reply [flat|nested] 16+ messages in thread