Re: [Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-05 Thread Ming Lei
On Tue, Aug 5, 2014 at 7:55 PM, Eric Blake wrote: > On 08/04/2014 09:33 PM, Ming Lei wrote: >> This patch introduces object allocation pool for speeding up >> object allocation in fast path. >> >> Signed-off-by: Ming Lei >> --- >> include/qemu/obj_pool.h | 64 >> ++

Re: [Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-05 Thread Michael S. Tsirkin
On Tue, Aug 05, 2014 at 06:21:55AM -0600, Eric Blake wrote: > On 08/05/2014 06:05 AM, Michael S. Tsirkin wrote: > > On Tue, Aug 05, 2014 at 05:55:49AM -0600, Eric Blake wrote: > >> On 08/04/2014 09:33 PM, Ming Lei wrote: > >>> This patch introduces object allocation pool for speeding up > >>> objec

Re: [Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-05 Thread Eric Blake
On 08/05/2014 06:05 AM, Michael S. Tsirkin wrote: > On Tue, Aug 05, 2014 at 05:55:49AM -0600, Eric Blake wrote: >> On 08/04/2014 09:33 PM, Ming Lei wrote: >>> This patch introduces object allocation pool for speeding up >>> object allocation in fast path. >>> >>> Signed-off-by: Ming Lei >>> --- >>

Re: [Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-05 Thread Michael S. Tsirkin
On Tue, Aug 05, 2014 at 05:55:49AM -0600, Eric Blake wrote: > On 08/04/2014 09:33 PM, Ming Lei wrote: > > This patch introduces object allocation pool for speeding up > > object allocation in fast path. > > > > Signed-off-by: Ming Lei > > --- > > include/qemu/obj_pool.h | 64 > > +

Re: [Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-05 Thread Eric Blake
On 08/04/2014 09:33 PM, Ming Lei wrote: > This patch introduces object allocation pool for speeding up > object allocation in fast path. > > Signed-off-by: Ming Lei > --- > include/qemu/obj_pool.h | 64 > +++ > 1 file changed, 64 insertions(+) > cr

[Qemu-devel] [PATCH v1 01/17] qemu/obj_pool.h: introduce object allocation pool

2014-08-04 Thread Ming Lei
This patch introduces object allocation pool for speeding up object allocation in fast path. Signed-off-by: Ming Lei --- include/qemu/obj_pool.h | 64 +++ 1 file changed, 64 insertions(+) create mode 100644 include/qemu/obj_pool.h diff --git a/incl