Virtio On Xen: Difference between revisions
No edit summary |
(Update TODO info) |
||
Line 5: | Line 5: | ||
<!-- Original date: Wed Aug 31 05:03:59 2011 (1314767039000000) --> |
<!-- Original date: Wed Aug 31 05:03:59 2011 (1314767039000000) --> |
||
{{TODO|This is out-of-date. If you think you need VirtIO to meet your end goal but not quite sure, we suggest you send email with all your requirements and constraints to xen-devel@lists.xenproject.org for suggestions. In the mean time, you could also have a look at Xen's PV network protocol, which has been in mainline for years. }} |
|||
{{TODO|This is out-of-date. To get more information, please contact Wei.Liu2@citrix.com}} |
|||
__NOTOC__ |
__NOTOC__ |
Revision as of 10:49, 10 February 2014
Virtio on Xen
The Virtio on Xen .project is a project for Google Summer of Code 2011. It's still working in progress. But fortunately, we have a working prototype. This page is intended to guide people who might be interested in giving it a try.
Note:
- Make sure you have the latest Xen unstable source (at least CS23728).
- Checkout Stefano Stabellini's QEMU repository: git://xenbits.xen.org/people/sstabellini/qemu-dm.git xen-stable-0.15
Virtio for HVM guest
In fact, there is nothing much to do.
- With this patch, we can enable libxl to support configuration for Virtio disk and nic.
- For disk configuration syntax, use 'vd*' as virtual identifier, see docs/misc/vbd-interface.txt for details.
- For nic configuration syntax, use 'model=virtio' in vif configuration. Latest QEMU may require 'model=virtio-net'. Just choose the one that works.
- Disable MSI in guest kernel, with 'pci=nomsi' option in guest kernel command line. Currently, MSI delivery is not supported by HVM guest (though Xen has one HVMOP to do this, QEMU is not yet ready for this).
- Also you might want to add 'xen_emul_unplug=never' in the guest kernel command line.
Use 'xl' to start the guest, not 'xm'.
Virtio for PV guest
First of all, you need the patch in the previous section to enable libxl to support configuration syntax for Virtio disk and nic.
Then apply the following patches to upstream QEMU and Linux kernel.
- QEMU
- Linux kernel
- linux-01-virtio-xenbus.patch
- linux-02-virtio-ring.patch. N.B This patch breaks existing virtio ring implementation, so please compile it out of tree and load it manually.
- VM config file
- Make sure you add device_model_args_pv=['-net', 'tap,vlan=0,script=no'] to make QEMU add a tap for you, or you won't be able to send packets via Virtio net.
- Linux kernel config
- Make sure you have 'iommu=soft' in your guest kernel command line.
Run 'xl' to startup VM, 'xm' doesn't understand virtio configuration. After the VM is up, load modified virtio_ring.ko and all the other modules manually in the following order:
- virtio.ko
- virtio_ring.ko
- virtio_net.ko
- virtio_blk.ko
- virtio_xenbus.ko
Hopefully you will get Virtio devices without much trouble.
TODO
- Enable xen-mapcache for Virtio for PV, improve performance.
- Squash two evtchns into one, hopefully we can eliminate locking in transport layer and improve performance.
- Enable Virtio device DMA capability
- Bug fixes, transport layer crashes sometimes under heavy workload.
Related References
For those who encounter problems, please contact Wei Liu <liuw AT liuw SPAMFREE dot name> [{Category:Project]]