500887768a
Replace ad-hoc declarations with the linux header. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <1442585920-28373-1-git-send-email-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
45 lines
878 B
C
45 lines
878 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 "qemu-common.h"
|
|
#include "hw/qdev.h"
|
|
#include "hw/virtio/virtio-scsi.h"
|
|
#include "hw/virtio/vhost.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"
|
|
#define VHOST_SCSI(obj) \
|
|
OBJECT_CHECK(VHostSCSI, (obj), TYPE_VHOST_SCSI)
|
|
|
|
typedef struct VHostSCSI {
|
|
VirtIOSCSICommon parent_obj;
|
|
|
|
Error *migration_blocker;
|
|
|
|
struct vhost_dev dev;
|
|
int32_t bootindex;
|
|
int channel;
|
|
int target;
|
|
int lun;
|
|
} VHostSCSI;
|
|
|
|
#endif
|