search for: virtio_scsi_req_cmd

Displaying 14 results from an estimated 14 matches for "virtio_scsi_req_cmd".

2013 Mar 15
7
[PATCH 0/2] Fix booting tcm_vhost + seabios
Asias He (2): virtio-scsi: Set _DRIVER_OK flag before scsi target scanning virtio-scsi: Pack struct virtio_scsi_{req_cmd,resp_cmd} src/virtio-scsi.c | 5 +++-- src/virtio-scsi.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) -- 1.8.1.4
2013 Mar 15
7
[PATCH 0/2] Fix booting tcm_vhost + seabios
Asias He (2): virtio-scsi: Set _DRIVER_OK flag before scsi target scanning virtio-scsi: Pack struct virtio_scsi_{req_cmd,resp_cmd} src/virtio-scsi.c | 5 +++-- src/virtio-scsi.h | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) -- 1.8.1.4
2011 Jun 07
2
virtio scsi host draft specification, v3
...Y or REPORT LUNS) or task management functions (for example, I_T RESET). Device operation: request queues -------------------------------- The driver queues requests to an arbitrary request queue, and they are used by the device on that same queue. Requests have the following format: struct virtio_scsi_req_cmd { u8 lun[8]; u64 id; u8 task_attr; u8 prio; u8 crn; char cdb[cdb_size]; char dataout[]; u8 sense[sense_size]; u32 sense_len; u32 residual; u16 status_qualifier; u8 status; u8 response; c...
2011 Jun 07
2
virtio scsi host draft specification, v3
...Y or REPORT LUNS) or task management functions (for example, I_T RESET). Device operation: request queues -------------------------------- The driver queues requests to an arbitrary request queue, and they are used by the device on that same queue. Requests have the following format: struct virtio_scsi_req_cmd { u8 lun[8]; u64 id; u8 task_attr; u8 prio; u8 crn; char cdb[cdb_size]; char dataout[]; u8 sense[sense_size]; u32 sense_len; u32 residual; u16 status_qualifier; u8 status; u8 response; c...
2012 Sep 28
6
[PATCH 0/3] virtio-net: inline header support
Thinking about Sasha's patches, we can reduce ring usage for virtio net small packets dramatically if we put virtio net header inline with the data. This can be done for free in case guest net stack allocated extra head room for the packet, and I don't see why would this have any downsides. Even though with my recent patches qemu no longer requires header to be the first s/g element, we
2012 Sep 28
6
[PATCH 0/3] virtio-net: inline header support
Thinking about Sasha's patches, we can reduce ring usage for virtio net small packets dramatically if we put virtio net header inline with the data. This can be done for free in case guest net stack allocated extra head room for the packet, and I don't see why would this have any downsides. Even though with my recent patches qemu no longer requires header to be the first s/g element, we
2011 Dec 05
1
[PATCH v2] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725766 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725783 + + // Read-only +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + +...
2011 Dec 05
1
[PATCH v2] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725766 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725783 + + // Read-only +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + +...
2011 Nov 30
2
[PATCH] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572414 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + + u64 id; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572420 + + u8...
2011 Nov 30
2
[PATCH] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572414 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + + u64 id; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572420 + + u8...
2013 Mar 12
4
[PATCH V2 WIP 0/2] vhost-scsi: new device supporting the tcm_vhost Linux kernel module
This is on top of Paolo and Nick's work. Current status: Works now (guest boots fine, no hang any more) with seabios's virtio-scsi disabled. Rebased to latest qemu.org/master Change details are in commit log. TODO: Make seabios happy. Paolo Bonzini (2): virtio-scsi: create VirtIOSCSICommon vhost-scsi: new device supporting the tcm_vhost Linux kernel module hw/Makefile.objs
2013 Mar 12
4
[PATCH V2 WIP 0/2] vhost-scsi: new device supporting the tcm_vhost Linux kernel module
This is on top of Paolo and Nick's work. Current status: Works now (guest boots fine, no hang any more) with seabios's virtio-scsi disabled. Rebased to latest qemu.org/master Change details are in commit log. TODO: Make seabios happy. Paolo Bonzini (2): virtio-scsi: create VirtIOSCSICommon vhost-scsi: new device supporting the tcm_vhost Linux kernel module hw/Makefile.objs
2012 Feb 05
1
[PATCH v3] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725766 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725783 + + // Read-only +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + +...
2012 Feb 05
1
[PATCH v3] Add virtio-scsi to the virtio spec
...andard + +\change_inserted 1531152142 1322572395 +Requests have the following format: +\end_layout + +\begin_layout Standard + +\change_inserted 1531152142 1322572526 +\begin_inset listings +inline false +status open + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725766 + +struct virtio_scsi_req_cmd { +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322725783 + + // Read-only +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572417 + + u8 lun[8]; +\end_layout + +\begin_layout Plain Layout + +\change_inserted 1531152142 1322572419 + +...