Re: [Qemu-devel] [PATCH] MAkefile: dont rebuild vhost for each target

2013-01-21 Thread Anthony Liguori
Hi, Thank you for submitting your patch series. This note is to inform you that this patch series no longer applies against the latest qemu.git tree. If it's been at least a few days since you submitted this series, please resubmit a new version of your patch series so it can be considered for

Re: [Qemu-devel] [PATCH] MAkefile: dont rebuild vhost for each target

2013-01-04 Thread Stefan Hajnoczi
On Thu, Dec 20, 2012 at 04:20:37PM +0200, Michael S. Tsirkin wrote: diff --git a/hw/Makefile.objs b/hw/Makefile.objs index 2778035..360a43c 100644 --- a/hw/Makefile.objs +++ b/hw/Makefile.objs @@ -3,6 +3,9 @@ common-obj-y += loader.o common-obj-$(CONFIG_VIRTIO) += virtio-console.o

[Qemu-devel] [PATCH] MAkefile: dont rebuild vhost for each target

2012-12-20 Thread Michael S. Tsirkin
We rebuild vhost_net for each target, but there's no real reason to, we only have 2 variants: with and without vhost-net. Signed-off-by: Michael S. Tsirkin m...@redhat.com --- Makefile.target | 1 + hw/Makefile.objs| 5 +++-- hw/vhost_net_stub.c | 1 + 3 files changed, 5 insertions(+), 2

Re: [Qemu-devel] [PATCH] MAkefile: dont rebuild vhost for each target

2012-12-20 Thread Paolo Bonzini
Il 20/12/2012 15:20, Michael S. Tsirkin ha scritto: diff --git a/hw/vhost_net_stub.c b/hw/vhost_net_stub.c new file mode 100644 index 000..387b578 --- /dev/null +++ b/hw/vhost_net_stub.c @@ -0,0 +1 @@ +#include vhost_net.c Nice. As a follow-up, can you perhaps split the vhost_net.c

Re: [Qemu-devel] [PATCH] MAkefile: dont rebuild vhost for each target

2012-12-20 Thread Michael S. Tsirkin
On Thu, Dec 20, 2012 at 03:37:58PM +0100, Paolo Bonzini wrote: Il 20/12/2012 15:20, Michael S. Tsirkin ha scritto: diff --git a/hw/vhost_net_stub.c b/hw/vhost_net_stub.c new file mode 100644 index 000..387b578 --- /dev/null +++ b/hw/vhost_net_stub.c @@ -0,0 +1 @@ +#include