qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 41/41] migration: inline migrate_fd_close


From: Orit Wasserman
Subject: Re: [Qemu-devel] [PATCH 41/41] migration: inline migrate_fd_close
Date: Fri, 22 Feb 2013 16:00:49 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130110 Thunderbird/17.0.2

On 02/15/2013 07:47 PM, Paolo Bonzini wrote:
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
>  migration.c |   14 ++------------
>  1 files changed, 2 insertions(+), 12 deletions(-)
> 
> diff --git a/migration.c b/migration.c
> index b32dfc1..8fb2d2e 100644
> --- a/migration.c
> +++ b/migration.c
> @@ -273,10 +273,10 @@ static void migrate_fd_cleanup(void *opaque)
>          qemu_thread_join(&s->thread);
>          qemu_mutex_lock_iothread();
>  
> -        migrate_fd_close(s);
> +        qemu_fclose(s->file);
> +        s->file = NULL;
>      }
>  
> -    assert(s->file == NULL);
>      assert(s->state != MIG_STATE_ACTIVE);
>  
>      if (s->state != MIG_STATE_COMPLETED) {
> @@ -301,16 +301,6 @@ static void migrate_fd_cancel(MigrationState *s)
>      __sync_val_compare_and_swap(&s->state, MIG_STATE_ACTIVE, 
> MIG_STATE_CANCELLED);
>  }
>  
> -int migrate_fd_close(MigrationState *s)
> -{
> -    int rc = 0;
> -    if (s->file != NULL) {
> -        rc = qemu_fclose(s->file);
> -        s->file = NULL;
> -    }
> -    return rc;
> -}
> -
>  void add_migration_state_change_notifier(Notifier *notify)
>  {
>      notifier_list_add(&migration_state_notifiers, notify);
> 
Reviewed-by: Orit Wasserman <address@hidden>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]