qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 07/11] migration: Use cmpxchg correctly


From: Dr. David Alan Gilbert
Subject: Re: [Qemu-devel] [PATCH 07/11] migration: Use cmpxchg correctly
Date: Thu, 18 Jun 2015 11:33:12 +0100
User-agent: Mutt/1.5.23 (2014-03-12)

* Juan Quintela (address@hidden) wrote:
> cmpxchg returns the old value
> 
> Signed-off-by: Juan Quintela <address@hidden>

Reviewed-by: Dr. David Alan Gilbert <address@hidden>

Nice spot.

> ---
>  migration/migration.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/migration/migration.c b/migration/migration.c
> index f1ecf76..1791185 100644
> --- a/migration/migration.c
> +++ b/migration/migration.c
> @@ -505,7 +505,7 @@ void qmp_migrate_set_parameters(bool has_compress_level,
> 
>  static void migrate_set_state(MigrationState *s, int old_state, int 
> new_state)
>  {
> -    if (atomic_cmpxchg(&s->state, old_state, new_state) == new_state) {
> +    if (atomic_cmpxchg(&s->state, old_state, new_state) == old_state) {
>          trace_migrate_set_state(new_state);
>      }
>  }
> -- 
> 2.4.3
> 
> 
--
Dr. David Alan Gilbert / address@hidden / Manchester, UK



reply via email to

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