2017-03-02 19:25:52 +01:00
|
|
|
/*
|
|
|
|
* vhost-user-scsi host device
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Nutanix Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Felipe Franciosi <felipe@nutanix.com>
|
|
|
|
*
|
|
|
|
* This file is largely based on "vhost-scsi.h" by:
|
|
|
|
* 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_USER_SCSI_H
|
|
|
|
#define VHOST_USER_SCSI_H
|
|
|
|
|
|
|
|
#include "hw/virtio/virtio-scsi.h"
|
|
|
|
#include "hw/virtio/vhost.h"
|
2018-05-24 12:33:33 +02:00
|
|
|
#include "hw/virtio/vhost-user.h"
|
2017-03-02 19:25:52 +01:00
|
|
|
#include "hw/virtio/vhost-scsi-common.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2017-03-02 19:25:52 +01:00
|
|
|
|
|
|
|
#define TYPE_VHOST_USER_SCSI "vhost-user-scsi"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VHostUserSCSI, VHOST_USER_SCSI)
|
2017-03-02 19:25:52 +01:00
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VHostUserSCSI {
|
2017-03-02 19:25:52 +01:00
|
|
|
VHostSCSICommon parent_obj;
|
2023-10-09 06:46:59 +02:00
|
|
|
|
|
|
|
/* Properties */
|
|
|
|
bool connected;
|
|
|
|
bool started_vu;
|
|
|
|
|
2019-03-08 15:04:45 +01:00
|
|
|
VhostUserState vhost_user;
|
2023-10-09 06:46:59 +02:00
|
|
|
struct vhost_virtqueue *vhost_vqs;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2017-03-02 19:25:52 +01:00
|
|
|
|
|
|
|
#endif /* VHOST_USER_SCSI_H */
|