]> Git Repo - qemu.git/blame - include/hw/virtio/vhost-vsock.h
spapr/rtas: modify spapr_rtas_register() to remove RTAS handlers
[qemu.git] / include / hw / virtio / vhost-vsock.h
CommitLineData
fc0b9b0e
SH
1/*
2 * Vhost vsock virtio device
3 *
4 * Copyright 2015 Red Hat, Inc.
5 *
6 * Authors:
7 * Stefan Hajnoczi <[email protected]>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * (at your option) any later version. See the COPYING file in the
11 * top-level directory.
12 */
13
14#ifndef _QEMU_VHOST_VSOCK_H
15#define _QEMU_VHOST_VSOCK_H
16
17#include "hw/virtio/virtio.h"
18#include "hw/virtio/vhost.h"
19
20#define TYPE_VHOST_VSOCK "vhost-vsock-device"
21#define VHOST_VSOCK(obj) \
22 OBJECT_CHECK(VHostVSock, (obj), TYPE_VHOST_VSOCK)
23
24typedef struct {
25 uint64_t guest_cid;
26 char *vhostfd;
27} VHostVSockConf;
28
29typedef struct {
30 /*< private >*/
31 VirtIODevice parent;
32 VHostVSockConf conf;
33 struct vhost_virtqueue vhost_vqs[2];
34 struct vhost_dev vhost_dev;
35 VirtQueue *event_vq;
36 QEMUTimer *post_load_timer;
37
38 /*< public >*/
39} VHostVSock;
40
41#endif /* _QEMU_VHOST_VSOCK_H */
This page took 0.148362 seconds and 4 git commands to generate.