tests: Move benchmarks into a separate folder
[qemu/ar7.git] / include / hw / virtio / vhost-user-vsock.h
blob4cfd558245508204579f7778369d31e160d4231e
1 /*
2 * Vhost-user vsock virtio device
4 * Copyright 2020 Red Hat, Inc.
6 * This work is licensed under the terms of the GNU GPL, version 2 or
7 * (at your option) any later version. See the COPYING file in the
8 * top-level directory.
9 */
11 #ifndef _QEMU_VHOST_USER_VSOCK_H
12 #define _QEMU_VHOST_USER_VSOCK_H
14 #include "hw/virtio/vhost-vsock-common.h"
15 #include "hw/virtio/vhost-user.h"
16 #include "standard-headers/linux/virtio_vsock.h"
17 #include "qom/object.h"
19 #define TYPE_VHOST_USER_VSOCK "vhost-user-vsock-device"
20 OBJECT_DECLARE_SIMPLE_TYPE(VHostUserVSock, VHOST_USER_VSOCK)
22 typedef struct {
23 CharBackend chardev;
24 } VHostUserVSockConf;
26 struct VHostUserVSock {
27 /*< private >*/
28 VHostVSockCommon parent;
29 VhostUserState vhost_user;
30 VHostUserVSockConf conf;
31 struct virtio_vsock_config vsockcfg;
33 /*< public >*/
36 #endif /* _QEMU_VHOST_USER_VSOCK_H */