2 * QEMU vhost-user backend
4 * Copyright (C) 2018 Red Hat Inc
7 * Marc-André Lureau <marcandre.lureau@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
12 #ifndef QEMU_VHOST_USER_BACKEND_H
13 #define QEMU_VHOST_USER_BACKEND_H
15 #include "qom/object.h"
16 #include "exec/memory.h"
17 #include "qemu/option.h"
18 #include "qemu/bitmap.h"
19 #include "hw/virtio/vhost.h"
20 #include "hw/virtio/vhost-user.h"
21 #include "chardev/char-fe.h"
22 #include "io/channel.h"
24 #define TYPE_VHOST_USER_BACKEND "vhost-user-backend"
25 OBJECT_DECLARE_SIMPLE_TYPE(VhostUserBackend
,
30 struct VhostUserBackend
{
36 VhostUserState vhost_user
;
43 int vhost_user_backend_dev_init(VhostUserBackend
*b
, VirtIODevice
*vdev
,
44 unsigned nvqs
, Error
**errp
);
45 void vhost_user_backend_start(VhostUserBackend
*b
);
46 void vhost_user_backend_stop(VhostUserBackend
*b
);