2020-05-22 14:25:11 +02:00
|
|
|
/*
|
|
|
|
* Vhost-user vsock virtio device
|
|
|
|
*
|
|
|
|
* Copyright 2020 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* (at your option) any later version. See the COPYING file in the
|
|
|
|
* top-level directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _QEMU_VHOST_USER_VSOCK_H
|
|
|
|
#define _QEMU_VHOST_USER_VSOCK_H
|
|
|
|
|
|
|
|
#include "hw/virtio/vhost-vsock-common.h"
|
|
|
|
#include "hw/virtio/vhost-user.h"
|
|
|
|
#include "standard-headers/linux/virtio_vsock.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2020-05-22 14:25:11 +02:00
|
|
|
|
|
|
|
#define TYPE_VHOST_USER_VSOCK "vhost-user-vsock-device"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(VHostUserVSock, VHOST_USER_VSOCK)
|
2020-05-22 14:25:11 +02:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
CharBackend chardev;
|
|
|
|
} VHostUserVSockConf;
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct VHostUserVSock {
|
2020-05-22 14:25:11 +02:00
|
|
|
/*< private >*/
|
|
|
|
VHostVSockCommon parent;
|
|
|
|
VhostUserState vhost_user;
|
|
|
|
VHostUserVSockConf conf;
|
|
|
|
struct virtio_vsock_config vsockcfg;
|
|
|
|
|
|
|
|
/*< public >*/
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2020-05-22 14:25:11 +02:00
|
|
|
|
|
|
|
#endif /* _QEMU_VHOST_USER_VSOCK_H */
|