打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
Virtio

Paravirtualized drivers for kvm/Linux

  • Virtio was chosen to be the main platform for IO virtualization in KVM

  • The idea behind it is to have a common framework for hypervisors for IO virtualization

  • More information (although not uptodate) can be found here

  • At the moment network/block/balloon devices are suported for kvm

  • The host implementation is in userspace - qemu, so no driver is needed in the host.

How to use Virtio

  • Get kvm version >= 60

  • Get Linux kernel with virtio drivers for the guest

    • CONFIG_VIRTIO_PCI=y (Virtualization -> PCI driver for virtio devices)

    • CONFIG_VIRTIO_BALLOON=y (Virtualization -> Virtio balloon driver)

    • CONFIG_VIRTIO_BLK=y (Device Drivers -> Block -> Virtio block driver)

    • CONFIG_VIRTIO_NET=y (Device Drivers -> Network device support -> Virtio network driver)

    • CONFIG_VIRTIO=y (automatically selected)

    • CONFIG_VIRTIO_RING=y (automatically selected)

    • you can safely disable SATA/SCSI and also all other nic drivers if you only use VIRTIO (disk/nic)

    • Get Kernel >= 2.6.25 and activate (modules should also work, but take care of initramdisk)

  • As an alternative one can use a standard guest kernel for the guest > 2.6.18 and make use sync backward compatibility option

    • Backport and instructions can be found in kvm-guest-drivers-linux.git

  • Use virtio-net-pci device for the network devices (or model=virtio for old -net..-net syntax) and if=virtio for disk

    • Example

x86_64-softmmu/qemu-system-x86_64 -boot c -drive file=/images/xpbase.qcow2,if=virtio -m 384 -netdev type=tap,script=/etc/kvm/qemu-ifup,id=net0 -device virtio-net-pci,netdev=net0
  • -hd[ab] for disk won't work, use -drive

  • Disk will show up as /dev/vd[a-z][1-9], if you migrate you need to change "root=" in Lilo/GRUB config

  • At the moment the kernel modules are automatically loaded in the guest but the interface should be started manually (dhclient/ifconfig)

  • Currently performance is much better when using a host kernel configured with CONFIG_HIGH_RES_TIMERS. Another option is use HPET/RTC and -clock= qemu option.

  • Expected performance

    • Performance varies from host to host, kernel to kernel

    • On my laptop I measured 1.1Gbps rx throughput using 2.6.23, 850Mbps tx.

    • Ping latency is 300-500 usec

  • Enjoy, more to come :)

How to use get high performance with Virtio

  • get the latest drop from dpdk.org

  • add the librte_pmd_virtio

    • Example

testpmd -c 0xff -n 1     -d librte_pmd_virtio.so     --     --disable-hw-vlan --disable-rss     -i --rxq=1 --txq=1 --rxd=256 --txd=256
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
【转】以为真懂Openstack: 虚拟机创建的50个步骤和100个知识点(4)
【原创】Linux虚拟化KVM-Qemu分析(十)之virtio驱动
淘宝核心系统团队博客 | 硬件虚拟化技术浅析
【原创】Linux虚拟化KVM-Qemu分析(八)之virtio初探
如何挂载qcow2格式的镜像文件(how to mount a qcow2 image) – 笑遍世界
doubts :To write a generic device driver for pci device.
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服