forked from mirror/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
719 B
C
36 lines
719 B
C
/*
|
|
* vhost_scsi host device
|
|
*
|
|
* Copyright IBM, Corp. 2011
|
|
*
|
|
* Authors:
|
|
* Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU LGPL, version 2 or later.
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef VHOST_SCSI_H
|
|
#define VHOST_SCSI_H
|
|
|
|
#include "hw/virtio/virtio-scsi.h"
|
|
#include "hw/virtio/vhost.h"
|
|
#include "hw/virtio/vhost-scsi-common.h"
|
|
#include "qom/object.h"
|
|
|
|
enum vhost_scsi_vq_list {
|
|
VHOST_SCSI_VQ_CONTROL = 0,
|
|
VHOST_SCSI_VQ_EVENT = 1,
|
|
VHOST_SCSI_VQ_NUM_FIXED = 2,
|
|
};
|
|
|
|
#define TYPE_VHOST_SCSI "vhost-scsi"
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VHostSCSI, VHOST_SCSI)
|
|
|
|
struct VHostSCSI {
|
|
VHostSCSICommon parent_obj;
|
|
};
|
|
|
|
#endif
|