Re: [Qemu-devel] [PATCH v3 0/2] dataplane: add query-iothreads QMP command

2014-03-11 Thread Stefan Hajnoczi
On Thu, Feb 27, 2014 at 11:48:40AM +0100, Stefan Hajnoczi wrote: > v3: > * Loop until predicate is true to handle pthread_cond spurious wakeups > [eblake] > * Fix additional instances of "thread_id" [eblake] > > v2: > * Use "thread-id" instead of "thread_id" in QAPI [eblake] > * Avoid mutex u

Re: [Qemu-devel] [PATCH v3 0/2] dataplane: add query-iothreads QMP command

2014-03-03 Thread Stefan Hajnoczi
On Fri, Feb 28, 2014 at 02:00:28PM -0500, Luiz Capitulino wrote: > On Thu, 27 Feb 2014 11:48:40 +0100 > Stefan Hajnoczi wrote: > > > v3: > > * Loop until predicate is true to handle pthread_cond spurious wakeups > > [eblake] > > * Fix additional instances of "thread_id" [eblake] > > > > v2: >

Re: [Qemu-devel] [PATCH v3 0/2] dataplane: add query-iothreads QMP command

2014-02-28 Thread Luiz Capitulino
On Thu, 27 Feb 2014 11:48:40 +0100 Stefan Hajnoczi wrote: > v3: > * Loop until predicate is true to handle pthread_cond spurious wakeups > [eblake] > * Fix additional instances of "thread_id" [eblake] > > v2: > * Use "thread-id" instead of "thread_id" in QAPI [eblake] > * Avoid mutex unlock

Re: [Qemu-devel] [PATCH v3 0/2] dataplane: add query-iothreads QMP command

2014-02-27 Thread Eric Blake
On 02/27/2014 03:48 AM, Stefan Hajnoczi wrote: > v3: > * Loop until predicate is true to handle pthread_cond spurious wakeups > [eblake] > * Fix additional instances of "thread_id" [eblake] > > v2: > * Use "thread-id" instead of "thread_id" in QAPI [eblake] > * Avoid mutex unlock/destroy race

[Qemu-devel] [PATCH v3 0/2] dataplane: add query-iothreads QMP command

2014-02-27 Thread Stefan Hajnoczi
v3: * Loop until predicate is true to handle pthread_cond spurious wakeups [eblake] * Fix additional instances of "thread_id" [eblake] v2: * Use "thread-id" instead of "thread_id" in QAPI [eblake] * Avoid mutex unlock/destroy race between threads [pbonzini] This series applies on top of "[PAT