diff mbox

migration: Avoid qerror_report_err() outside QMP command handlers

Message ID 1424283712-476-1-git-send-email-armbru@redhat.com
State New
Headers show

Commit Message

Markus Armbruster Feb. 18, 2015, 6:21 p.m. UTC
qerror_report_err() is a transitional interface to help with
converting existing monitor commands to QMP.  It should not be used
elsewhere.  Replace by error_report_err() in
process_incoming_migration_co().

Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
Based on
[PATCH v2 00/10] Clean up around error_get_pretty(), qerror_report_err()

 migration/migration.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Eric Blake Feb. 18, 2015, 8 p.m. UTC | #1
On 02/18/2015 11:21 AM, Markus Armbruster wrote:
> qerror_report_err() is a transitional interface to help with
> converting existing monitor commands to QMP.  It should not be used
> elsewhere.  Replace by error_report_err() in
> process_incoming_migration_co().
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> Based on
> [PATCH v2 00/10] Clean up around error_get_pretty(), qerror_report_err()

Reviewed-by: Eric Blake <eblake@redhat.com>

> 
>  migration/migration.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/migration/migration.c b/migration/migration.c
> index b3adbc6..6a5e3f9 100644
> --- a/migration/migration.c
> +++ b/migration/migration.c
> @@ -106,8 +106,7 @@ static void process_incoming_migration_co(void *opaque)
>      /* Make sure all file formats flush their mutable metadata */
>      bdrv_invalidate_cache_all(&local_err);
>      if (local_err) {
> -        qerror_report_err(local_err);
> -        error_free(local_err);
> +        error_report_err(local_err);
>          exit(EXIT_FAILURE);
>      }
>  
>
Juan Quintela Feb. 18, 2015, 11:09 p.m. UTC | #2
Markus Armbruster <armbru@redhat.com> wrote:
> qerror_report_err() is a transitional interface to help with
> converting existing monitor commands to QMP.  It should not be used
> elsewhere.  Replace by error_report_err() in
> process_incoming_migration_co().

I trust you & eric

Included, thanks.

>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> Based on
> [PATCH v2 00/10] Clean up around error_get_pretty(), qerror_report_err()
>
>  migration/migration.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/migration/migration.c b/migration/migration.c
> index b3adbc6..6a5e3f9 100644
> --- a/migration/migration.c
> +++ b/migration/migration.c
> @@ -106,8 +106,7 @@ static void process_incoming_migration_co(void *opaque)
>      /* Make sure all file formats flush their mutable metadata */
>      bdrv_invalidate_cache_all(&local_err);
>      if (local_err) {
> -        qerror_report_err(local_err);
> -        error_free(local_err);
> +        error_report_err(local_err);
>          exit(EXIT_FAILURE);
>      }
Juan Quintela March 17, 2015, 12:42 p.m. UTC | #3
Markus Armbruster <armbru@redhat.com> wrote:
> qerror_report_err() is a transitional interface to help with
> converting existing monitor commands to QMP.  It should not be used
> elsewhere.  Replace by error_report_err() in
> process_incoming_migration_co().
>
> Signed-off-by: Markus Armbruster <armbru@redhat.com>

Applied, thanks.
diff mbox

Patch

diff --git a/migration/migration.c b/migration/migration.c
index b3adbc6..6a5e3f9 100644
--- a/migration/migration.c
+++ b/migration/migration.c
@@ -106,8 +106,7 @@  static void process_incoming_migration_co(void *opaque)
     /* Make sure all file formats flush their mutable metadata */
     bdrv_invalidate_cache_all(&local_err);
     if (local_err) {
-        qerror_report_err(local_err);
-        error_free(local_err);
+        error_report_err(local_err);
         exit(EXIT_FAILURE);
     }