Re: [Qemu-devel] [PATCH 05/25] migration: avoid using error_is_set and thus relying on errp != NULL

2012-10-17 Thread Markus Armbruster
Paolo Bonzini pbonz...@redhat.com writes:

 The migration code is using errp to detect internal errors,
 this means that it relies on errp being non-NULL.

Impact?



Re: [Qemu-devel] [PATCH 05/25] migration: avoid using error_is_set and thus relying on errp != NULL

2012-10-17 Thread Paolo Bonzini
Il 17/10/2012 15:36, Markus Armbruster ha scritto:
  The migration code is using errp to detect internal errors,
  this means that it relies on errp being non-NULL.
 Impact?

None because so far our only QMP client is HMP and never passes a NULL
Error **.  But if we had others, it would make sure migration can work
with a NULL Error **.

Paolo



Re: [Qemu-devel] [PATCH 05/25] migration: avoid using error_is_set and thus relying on errp != NULL

2012-10-17 Thread Markus Armbruster
Paolo Bonzini pbonz...@redhat.com writes:

 Il 17/10/2012 15:36, Markus Armbruster ha scritto:
  The migration code is using errp to detect internal errors,
  this means that it relies on errp being non-NULL.
 Impact?

 None because so far our only QMP client is HMP and never passes a NULL
 Error **.  But if we had others, it would make sure migration can work
 with a NULL Error **.

Explanation would be nice to have in the commit message.



[Qemu-devel] [PATCH 05/25] migration: avoid using error_is_set and thus relying on errp != NULL

2012-10-10 Thread Paolo Bonzini
The migration code is using errp to detect internal errors,
this means that it relies on errp being non-NULL.

Signed-off-by: Paolo Bonzini pbonz...@redhat.com
---
v1-v2: changed summary line of the commit message

 migration-tcp.c |  8 +---
 migration.c | 13 +++--
 2 file modificati, 12 inserzioni(+), 9 rimozioni(-)

diff --git a/migration-tcp.c b/migration-tcp.c
index a15c2b8..78337a3 100644
--- a/migration-tcp.c
+++ b/migration-tcp.c
@@ -71,14 +71,16 @@ static void tcp_wait_for_connect(int fd, void *opaque)
 int tcp_start_outgoing_migration(MigrationState *s, const char *host_port,
  Error **errp)
 {
+Error *local_err = NULL;
+
 s-get_error = socket_errno;
 s-write = socket_write;
 s-close = tcp_close;
 
-s-fd = inet_nonblocking_connect(host_port, tcp_wait_for_connect, s,
- errp);
-if (error_is_set(errp)) {
+s-fd = inet_nonblocking_connect(host_port, tcp_wait_for_connect, s, 
local_err);
+if (local_err != NULL) {
 migrate_fd_error(s);
+error_propagate(errp, local_err);
 return -1;
 }
 
diff --git a/migration.c b/migration.c
index 22a05c4..8a04174 100644
--- a/migration.c
+++ b/migration.c
@@ -481,6 +481,7 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk,
  bool has_inc, bool inc, bool has_detach, bool detach,
  Error **errp)
 {
+Error *local_err = NULL;
 MigrationState *s = migrate_get_current();
 MigrationParams params;
 const char *p;
@@ -506,7 +507,7 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk,
 s = migrate_init(params);
 
 if (strstart(uri, tcp:, p)) {
-ret = tcp_start_outgoing_migration(s, p, errp);
+ret = tcp_start_outgoing_migration(s, p, local_err);
 #if !defined(WIN32)
 } else if (strstart(uri, exec:, p)) {
 ret = exec_start_outgoing_migration(s, p);
@@ -520,11 +521,11 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk,
 return;
 }
 
-if (ret  0) {
-if (!error_is_set(errp)) {
-DPRINTF(migration failed: %s\n, strerror(-ret));
-/* FIXME: we should return meaningful errors */
-error_set(errp, QERR_UNDEFINED_ERROR);
+if (ret  0 || local_err) {
+if (!local_err) {
+error_set_errno(errp, -ret, QERR_UNDEFINED_ERROR);
+} else {
+error_propagate(errp, local_err);
 }
 return;
 }
-- 
1.7.12.1