Features/VirtioSCSI: Difference between revisions

From QEMU
No edit summary
Line 74: Line 74:
* QEMU (vhost-scsi): http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/virtio-scsi
* QEMU (vhost-scsi): http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/virtio-scsi
* tcm_vhost: https://github.com/stefanha/linux/tree/tcm_vhost
* tcm_vhost: https://github.com/stefanha/linux/tree/tcm_vhost
== Zhi Yong Wu's code which integrate vhost-scsi with qemu.git/master ==
* QEMU(virtio-scsi,vhost-scsi): https://github.com/wuzhy/qemu/tree/vhost-scsi
* Linux(virtio-scsi,tcm_vhost): https://github.com/wuzhy/linux/tree/vhost-scsi


= Links =
= Links =

Revision as of 13:10, 5 May 2012

Overview

A virtio storage interface for efficient I/O that overcomes virtio-blk limitations and supports advanced SCSI hardware.

Features

  • /dev/sda inside guest
  • Multiple LUNs per PCI adapter, solves virtio-blk 1:1 scalability problem
  • SCSI passthrough (tape, CD burning, ...)

Status

Future tasks

  • Pick up vhost-scsi work again:
    • Port QEMU hw/virtio-scsi.c vhost-scsi support onto latest code
    • add QEMU Object Model (QOM) support to the vhost-scsi device
    • Port LIO vhost-scsi code onto latest lio.git code
    • Update vhost-scsi to implement latest virtio-scsi device specification
    • Ensure vhost-scsi I/O still works
    • Design libvirt integration for LIO
  • QEMU SCSI target:
    • Add support for WRITE SAME commands
    • Add support for rerror/werror to scsi-generic
  • Complete virtio-scsi spec implementation:
    • Add support for hotplug events
    • Add support for asynchronous media change notifications
    • Multi-queue (with fine-grained locking in the Linux driver?)
  • Use cases to test:
    • CD-ROM/DVD burning passthrough
    • Tape passthrough
    • 100s of LUNs (scalability)
  • Use cases to flesh out:
    • LUN hotplug (known to work with manual hotplug)
    • Multipath inside guest
  • Performance analysis
    • Compare against virtio-blk I/O (rough numbers: 6% slower on iozone with a tmpfs-backed disk)
    • Compare passthrough performance against bare metal host SCSI
    • Measure scalability and where the bottlenecks are (full virtqueues? locks?)

Specifications

Repositories

Note: you must use either Paolo's trees or Stefan's trees, you cannot mix QEMU from Paolo with Linux from Stefan and vice versa.

Paolo's code with QEMU SCSI emulation

Stefan's code with tcm_vhost

Zhi Yong Wu's code which integrate vhost-scsi with qemu.git/master

Links