tests: Move benchmarks into a separate folder
[qemu/ar7.git] / include / hw / virtio / vhost-scsi.h
blob7dc2bdd69d64ddf281d3e32561dbf63dd21cd1c8
1 /*
2 * vhost_scsi host device
4 * Copyright IBM, Corp. 2011
6 * Authors:
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.
14 #ifndef VHOST_SCSI_H
15 #define VHOST_SCSI_H
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)
31 struct VHostSCSI {
32 VHostSCSICommon parent_obj;
35 #endif