[kvm-devel] [PATCH 4/6] virtio network driver (v2)

2008-04-04 Thread Anthony Liguori
This patch implements the virtio network driver backend. In KVM, this driver can achieve 1gbit tx/rx performance. More patches are required to improve the network IO infrastructure to achieve better performance in QEMU. Since v1, I've updated the patch based on the IOVector refactoring. Signed-

[kvm-devel] [PATCH 4/6] virtio network driver

2008-03-29 Thread Anthony Liguori
This patch implements the virtio network driver backend. In KVM, this driver can achieve 1gbit tx/rx performance. More patches are required to improve the network IO infrastructure to achieve better performance in QEMU. Signed-off-by: Anthony Liguori <[EMAIL PROTECTED]> diff --git a/Makefile.ta

Re: [kvm-devel] [PATCH 4/6] virtio network driver for QEMU (v2)

2007-11-11 Thread Anthony Liguori
Dor Laor wrote: > Anthony Liguori wrote: >> This patch implements a very naive virtio network device backend in >> QEMU. >> Even with this simple implementation, it get's about 3x the >> throughput of >> rtl8139. Of course, there's a whole lot of room for optimization to >> eliminate >> the unn

Re: [kvm-devel] [PATCH 4/6] virtio network driver for QEMU (v2)

2007-11-11 Thread Dor Laor
Anthony Liguori wrote: > This patch implements a very naive virtio network device backend in QEMU. > Even with this simple implementation, it get's about 3x the throughput of > rtl8139. Of course, there's a whole lot of room for optimization to eliminate > the unnecessary copying and support more

[kvm-devel] [PATCH 4/6] virtio network driver for QEMU (v2)

2007-11-10 Thread Anthony Liguori
This patch implements a very naive virtio network device backend in QEMU. Even with this simple implementation, it get's about 3x the throughput of rtl8139. Of course, there's a whole lot of room for optimization to eliminate the unnecessary copying and support more advanced features. To use a vi