Re: [Qemu-devel] [PATCH v2 0/4] libqos: add a simple first-fit memory allocator

2014-07-31 Thread Stefan Hajnoczi
On Wed, Jul 30, 2014 at 06:28:25PM -0400, John Snow wrote: This set collects two patches by Marc MarĂ­ already on the mailing list, but goes further by adding a simple memory allocator that allows us to track and debug freed memory, and optionally keep track of any leaks. v2: use QTAILQ as

[Qemu-devel] [PATCH v2 0/4] libqos: add a simple first-fit memory allocator

2014-07-30 Thread John Snow
This set collects two patches by Marc MarĂ­ already on the mailing list, but goes further by adding a simple memory allocator that allows us to track and debug freed memory, and optionally keep track of any leaks. v2: use QTAILQ as a basis for the linked list implementation instead. Correct