8063396bf3
This converts existing DECLARE_INSTANCE_CHECKER usage to OBJECT_DECLARE_SIMPLE_TYPE when possible. $ ./scripts/codeconverter/converter.py -i \ --pattern=AddObjectDeclareSimpleType $(git grep -l '' -- '*.[ch]') Signed-off-by: Eduardo Habkost <ehabkost@redhat.com> Acked-by: Paul Durrant <paul@xen.org> Message-Id: <20200916182519.415636-6-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
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
|