1. 30 5月, 2019 1 次提交
  2. 13 3月, 2019 1 次提交
  3. 15 1月, 2019 1 次提交
  4. 24 8月, 2018 3 次提交
  5. 25 5月, 2018 1 次提交
  6. 18 12月, 2017 1 次提交
  7. 14 11月, 2017 1 次提交
    • D
      vhost-user-scsi: add missing virtqueue_size param · 92003610
      Dariusz Stojaczyk 提交于
      Commit 5c0919d0 [1] introduced virtqueue_size parameter
      for common virtio-scsi path, without updaing the vhost-user-scsi
      code. vhost-user-scsi devices right now report size 0 for each vq.
      
      This patch introduces virtqueue_size param to vhost-user-scsi,
      that can now be set by the user. However, the most importantly, it
      now has a default value of 128 (same as QEMU's virtio-scsi).
      
      [1] 5c0919d0 ("virtio-scsi: Add virtqueue_size parameter
      allowing virtqueue size to be set.")
      
      Change-Id: I70e87eab702ebf1196c028dbf17d54fdc0c89a14
      Signed-off-by: NDariusz Stojaczyk <dariuszx.stojaczyk@intel.com>
      Message-Id: <1510676916-76409-1-git-send-email-dariuszx.stojaczyk@intel.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      92003610
  8. 15 6月, 2017 1 次提交
    • F
      vhost-user-scsi: Introduce vhost-user-scsi host device · f12c1ebd
      Felipe Franciosi 提交于
      This commit introduces a vhost-user device for SCSI. This is based
      on the existing vhost-scsi implementation, but done over vhost-user
      instead. It also uses a chardev to connect to the backend. Unlike
      vhost-scsi (today), VMs using vhost-user-scsi can be live migrated.
      
      To use it, start Qemu with a command line equivalent to:
      
      qemu-system-x86_64 \
             -chardev socket,id=vus0,path=/tmp/vus.sock \
             -device vhost-user-scsi-pci,chardev=vus0,bus=pci.0,addr=...
      
      A separate commit presents a sample application linked with libiscsi to
      provide a backend for vhost-user-scsi.
      Signed-off-by: NFelipe Franciosi <felipe@nutanix.com>
      Message-Id: <1488479153-21203-4-git-send-email-felipe@nutanix.com>
      Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
      f12c1ebd