Features/VirtioSCSI: Difference between revisions

From QEMU
No edit summary
 
(22 intermediate revisions by 3 users not shown)
Line 2: Line 2:


A virtio storage interface for efficient I/O that overcomes virtio-blk limitations and supports advanced SCSI hardware.
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 =
= Status =


* Virtio device specification
* Virtio device specification: part of VIRTIO 1.0
** Committed
* Linux guest driver: working
** http://ozlabs.org/~rusty/virtio-spec/virtio-0.9.4.pdf
** Multi-queue / fine-grained per-queue locking
* Linux guest driver
* QEMU hardware emulation using SCSI emulation: working
** Patch on mailing list
** Added support for WRITE SAME commands
** https://lkml.org/lkml/2012/2/5/75
** Added support for hotplug events
* QEMU hardware emulation using SCSI emulation
* QEMU hardware emulation using vhost-scsi: working
** Patches on mailing list
* Libvirt support: working
** http://lists.gnu.org/archive/html/qemu-devel/2012-01/msg02012.html
* SeaBIOS support: working
* QEMU hardware emulation using vhost-scsi
* Tested use include:
** (Stalled) work-in-progress, contact Stefan
** CD-ROM/DVD burning passthrough
** http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/virtio-scsi
** Tape passthrough
* Libvirt support
** 100s of LUNs (scalability)
** Patches on mailing list
** LUN hotplug (known to work with manual hotplug)
** http://www.redhat.com/archives/libvir-list/2012-January/msg00537.html


= Future tasks =
= Future tasks =
* Pick up vhost-scsi work again:
* Pick up vhost-scsi work again:
** Port QEMU hw/virtio-scsi.c vhost-scsi support onto latest code; add QEMU Object Model (QOM) support
** Port QEMU hw/virtio-scsi.c vhost-scsi support onto latest code
** to the vhost-scsi device
** add QEMU Object Model (QOM) support to the vhost-scsi device
** Port LIO vhost-scsi code onto latest lio.git code and spec
** 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
** Ensure vhost-scsi I/O still works
** Design libvirt integration for LIO
** Design libvirt integration for LIO
* QEMU SCSI target:
** Add support for rerror/werror to scsi-generic
* Complete virtio-scsi spec implementation:
** Add support for asynchronous media change notifications
* Use cases to flesh out:
** 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?)


= Features =
= Specifications =


* /dev/sda inside guest
* [http://ozlabs.org/~rusty/virtio-spec/ Virtio specification]
* Multiple LUNs per PCI adapter, solves virtio-blk 1:1 scalability problem
* [http://www.t10.org/drafts.htm SCSI Standards] - especially SAM, SPC, SBC
* SCSI passthrough
* [http://www.pcisig.com/specifications/conventional PCI Local Bus 3.0] - useful for understanding virtio-pci


= Links =
= Links =


* [[Features/VirtioSCSI/TCM Overview|In-kernel SCSI target overview]]
* KVM Forum 2011 presentation [http://www.linux-kvm.org/wiki/images/f/f5/2011-forum-virtio-scsi.pdf Virtio SCSI: An alternative virtualized storage stack for KVM]
* KVM Forum 2011 presentation [http://www.linux-kvm.org/wiki/images/f/f5/2011-forum-virtio-scsi.pdf Virtio SCSI: An alternative virtualized storage stack for KVM]
* [https://lkml.org/lkml/2011/6/7/252 Draft specification v3]
* [Red Hat whitepaper on virtio-scsi http://wiki.qemu.org/File:Virtio-scsi.pdf]
* [http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/virtio-scsi stefanha's vhost-scsi QEMU tree]
 
[[Category:Completed feature pages]]

Latest revision as of 15:39, 11 October 2016

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

  • Virtio device specification: part of VIRTIO 1.0
  • Linux guest driver: working
    • Multi-queue / fine-grained per-queue locking
  • QEMU hardware emulation using SCSI emulation: working
    • Added support for WRITE SAME commands
    • Added support for hotplug events
  • QEMU hardware emulation using vhost-scsi: working
  • Libvirt support: working
  • SeaBIOS support: working
  • Tested use include:
    • CD-ROM/DVD burning passthrough
    • Tape passthrough
    • 100s of LUNs (scalability)
    • LUN hotplug (known to work with manual hotplug)

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 rerror/werror to scsi-generic
  • Complete virtio-scsi spec implementation:
    • Add support for asynchronous media change notifications
  • Use cases to flesh out:
    • 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

Links