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

2012-02-17 Thread Anthony Liguori
On 01/13/2012 10:34 AM, Paolo Bonzini wrote: These patches slighly change the assortment of lists provided by qemu-queue. QCIRCLEQ is dropped, since it provides no real advantage over QTAILQ (and in fact is unused). QSLIST is introduced and used for free lists. QSIMPLEQ is left in, since it pr

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

2012-02-15 Thread Paolo Bonzini
On 01/13/2012 05:34 PM, Paolo Bonzini wrote: > These patches slighly change the assortment of lists provided by > qemu-queue. QCIRCLEQ is dropped, since it provides no real advantage > over QTAILQ (and in fact is unused). QSLIST is introduced and used for > free lists. > > QSIMPLEQ is left in, s

[Qemu-devel] [PATCH v2 0/5] qemu-queue cleanups

2012-01-13 Thread Paolo Bonzini
These patches slighly change the assortment of lists provided by qemu-queue. QCIRCLEQ is dropped, since it provides no real advantage over QTAILQ (and in fact is unused). QSLIST is introduced and used for free lists. QSIMPLEQ is left in, since it provides some memory saving over QTAILQ. Stefan,