From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=46414 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PS8ZT-0005Be-53 for qemu-devel@nongnu.org; Mon, 13 Dec 2010 08:36:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PS8ZR-00074T-TK for qemu-devel@nongnu.org; Mon, 13 Dec 2010 08:36:07 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42936) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PS8ZR-00073z-IC for qemu-devel@nongnu.org; Mon, 13 Dec 2010 08:36:05 -0500 Date: Mon, 13 Dec 2010 15:35:38 +0200 From: "Michael S. Tsirkin" Message-ID: <20101213133538.GA2731@redhat.com> References: <1292166128-10874-1-git-send-email-stefanha@linux.vnet.ibm.com> <20101212204127.GA24726@redhat.com> <20101212204228.GA24786@redhat.com> <20101212205634.GA24986@redhat.com> <20101212210959.GA25136@redhat.com> <20101213103836.GG25590@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: [Qemu-devel] Re: [PATCH v5 0/4] virtio: Use ioeventfd for virtqueue notify List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Hajnoczi Cc: qemu-devel@nongnu.org On Mon, Dec 13, 2010 at 01:11:27PM +0000, Stefan Hajnoczi wrote: > Fresh results: > > 192.168.0.1 - host (runs netperf) > 192.168.0.2 - guest (runs netserver) > > host$ src/netperf -H 192.168.0.2 -- -m 200 > > ioeventfd=on > TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 192.168.0.2 > (192.168.0.2) port 0 AF_INET > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > 87380 16384 200 10.00 1759.25 > > ioeventfd=off > TCP STREAM TEST from 0.0.0.0 (0.0.0.0) port 0 AF_INET to 192.168.0.2 > (192.168.0.2) port 0 AF_INET > Recv Send Send > Socket Socket Message Elapsed > Size Size Size Time Throughput > bytes bytes bytes secs. 10^6bits/sec > > 87380 16384 200 10.00 1757.15 > > The results vary approx +/- 3% between runs. > > Invocation: > $ x86_64-softmmu/qemu-system-x86_64 -m 4096 -enable-kvm -netdev > type=tap,id=net0,ifname=tap0,script=no,downscript=no -device > virtio-net-pci,netdev=net0,ioeventfd=on|off -vnc :0 -drive > if=virtio,cache=none,file=$HOME/rhel6-autobench-raw.img > > I am running qemu.git with v5 patches, based off > 36888c6335422f07bbc50bf3443a39f24b90c7c6. > > Host: > 1 Quad-Core AMD Opteron(tm) Processor 2350 @ 2 GHz > 8 GB RAM > RHEL 6 host > > Next I will try the patches on latest qemu-kvm.git > > Stefan One interesting thing is that I put virtio-net earlier on command line. Since iobus scan is linear for now, I wonder if this might possibly matter. -- MST