Re: [Qemu-devel] [PATCH] BitsSizedTasks-LargeFrames

2016-03-11 Thread Eric Blake
On 03/11/2016 08:50 AM, Bastian Koppelmann wrote: > Hi Siddharth, > > thanks for the patch. Can you resend it inlined into the e-mail instead > of an attachment? I usually use git send-email for that. > My workflow (once you have configured git send-email) would be: > > - git format-patch -1 > -

Re: [Qemu-devel] [PATCH] BitsSizedTasks-LargeFrames

2016-03-11 Thread Paolo Bonzini
Hi Siddharth, because you are touching possibly "hot" code paths, it is not possible to just move the allocation to the heap. You will have to check whether the number of used items is low enough and, if not, switch from the stack-allocated array to the heap. This way the stack-allocated array c

Re: [Qemu-devel] [PATCH] BitsSizedTasks-LargeFrames

2016-03-11 Thread Bastian Koppelmann
Hi Siddharth, thanks for the patch. Can you resend it inlined into the e-mail instead of an attachment? I usually use git send-email for that. My workflow (once you have configured git send-email) would be: - git format-patch -1 - git send-email --to="qemu-devel@nongnu.org" --cc="qemu-triv...@non

[Qemu-devel] [PATCH] BitsSizedTasks-LargeFrames

2016-03-11 Thread Siddharth Gupta
From 032be62f56a207833ae12cc9474e3e8be5ed8eb4 Mon Sep 17 00:00:00 2001 From: Siddharth Gupta Date: Fri, 11 Mar 2016 20:10:41 +0530 Subject: [PATCH] bitesizedtasks-large_frames-hw_dma_xilinx-hw_net_virtio --- hw/dma/xilinx_axidma.c | 5 - hw/net/virtio-net.c| 11 ++- 2 files cha