Il 25/09/2013 08:20, Liu Ping Fan ha scritto:
> From: Paolo Bonzini <[email protected]>
> 
> Seqlock implementation for QEMU. Usage idiom
> 
> reader:
>   do{
>     start = seqlock_read_begin()
> 
>   }while(seqlock_read_try(start))
> 
> writer:
>   seqlock_write_lock()
>   ...
>   seqlock_write_unlock()
> 
> initialization:
>   seqlock_init(QemuSeqLock *sl, QemuMutex *mutex)
>   where mutex could be NULL if the caller will provide extra lock
>   protection for seqlock_write_lock.
> 
> Signed-off-by: Paolo Bonzini <[email protected]>

You need to include your own signoff in addition to mine, here and in
patch 3.

Just reply to the two patches with the Signed-off-by line, whoever
applies can pick it up.

Paolo

Reply via email to