2 * vhost_scsi host device
4 * Copyright IBM, Corp. 2011
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
17 #include "hw/virtio/virtio-scsi.h"
18 #include "hw/virtio/vhost.h"
19 #include "hw/virtio/vhost-scsi-common.h"
20 #include "qom/object.h"
22 enum vhost_scsi_vq_list
{
23 VHOST_SCSI_VQ_CONTROL
= 0,
24 VHOST_SCSI_VQ_EVENT
= 1,
25 VHOST_SCSI_VQ_NUM_FIXED
= 2,
28 #define TYPE_VHOST_SCSI "vhost-scsi"
29 OBJECT_DECLARE_SIMPLE_TYPE(VHostSCSI
, VHOST_SCSI
)
32 VHostSCSICommon parent_obj
;