qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC PATCH 14/16] qcow2: Execute run_dependent_requests


From: Kevin Wolf
Subject: Re: [Qemu-devel] [RFC PATCH 14/16] qcow2: Execute run_dependent_requests() without lock
Date: Tue, 18 Sep 2012 16:54:12 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120605 Thunderbird/13.0

Am 18.09.2012 16:33, schrieb Paolo Bonzini:
> Il 18/09/2012 13:40, Kevin Wolf ha scritto:
>>  static void run_dependent_requests(BDRVQcowState *s, QCowL2Meta *m)
>>  {
>> -    /* Take the request off the list of running requests */
>> -    if (m->nb_clusters != 0) {
>> -        QLIST_REMOVE(m, next_in_flight);
>> -    }
>> -
>>      /* Restart all dependent requests */
>>      if (!qemu_co_queue_empty(&m->dependent_requests)) {
>> -        qemu_co_mutex_unlock(&s->lock);
>>          qemu_co_queue_restart_all(&m->dependent_requests);
>> -        qemu_co_mutex_lock(&s->lock);
>>      }
> 
> The comment and if can go away.

Ah, yes. And the one remaining line can be open coded in the two callers.

> Perhaps this patch could be moved earlier in the series?  (Just asking,
> in case the rebase is not too painful).

I'll check how painful it becomes. I'd expect it's doable.

Kevin



reply via email to

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