Re: [Qemu-devel] [PATCH 0/8] qemu-queue cleanups

2012-01-13 Thread Paolo Bonzini
On 01/02/2012 07:00 PM, Paolo Bonzini wrote: These patches simplify the jungle of lists provided by qemu-queue from 4 to 3. QCIRCLEQ is dropped, since it provides no real advantage over QTAILQ. QSIMPLEQ is simplified to no longer permit insertion at the tail, with the advantage that it is more

[Qemu-devel] [PATCH 0/8] qemu-queue cleanups

2012-01-02 Thread Paolo Bonzini
These patches simplify the jungle of lists provided by qemu-queue from 4 to 3. QCIRCLEQ is dropped, since it provides no real advantage over QTAILQ. QSIMPLEQ is simplified to no longer permit insertion at the tail, with the advantage that it is more suited for simple free lists. Stefan, these ar