Re: [libvirt] [PATCH v2] Fix performance problem of virStorageVolCreateXMLFrom()

2011-03-14 Thread Minoru Usui
Hi, Eric. Thank you for merging my patch. On Mon, 14 Mar 2011 21:04:26 -0600 Eric Blake wrote: > On 03/08/2011 04:06 AM, Minoru Usui wrote: > > This patch changes zerobuf variable from array to VIR_ALLOC_N(). > > > > Signed-off-by: Minoru Usui > > Thanks for contributing! This looks like you

Re: [libvirt] [PATCH v2] Fix performance problem of virStorageVolCreateXMLFrom()

2011-03-14 Thread Eric Blake
On 03/08/2011 04:06 AM, Minoru Usui wrote: > This patch changes zerobuf variable from array to VIR_ALLOC_N(). > > Signed-off-by: Minoru Usui Thanks for contributing! This looks like your first patch in, so I updated AUTHORS; let me know if I need to adjust any spelling. > --- > src/storage/sto

[libvirt] [PATCH v2] Fix performance problem of virStorageVolCreateXMLFrom()

2011-03-08 Thread Minoru Usui
This patch changes zerobuf variable from array to VIR_ALLOC_N(). Signed-off-by: Minoru Usui --- src/storage/storage_backend.c | 38 +- 1 files changed, 29 insertions(+), 9 deletions(-) diff --git a/src/storage/storage_backend.c b/src/storage/storage_backend