summaryrefslogtreecommitdiffstats
path: root/qemu/include/hw/virtio/vhost-scsi.h
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/include/hw/virtio/vhost-scsi.h')
-rw-r--r--qemu/include/hw/virtio/vhost-scsi.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/qemu/include/hw/virtio/vhost-scsi.h b/qemu/include/hw/virtio/vhost-scsi.h
deleted file mode 100644
index 9fd63df12..000000000
--- a/qemu/include/hw/virtio/vhost-scsi.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * 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