mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-22 15:38:36 -07:00
include: Rename sysemu/ -> system/
Headers in include/sysemu/ are not only related to system *emulation*, they are also used by virtualization. Rename as system/ which is clearer. Files renamed manually then mechanical change using sed tool. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Tested-by: Lei Yang <leiyang@redhat.com> Message-Id: <20241203172445.28576-1-philmd@linaro.org>
This commit is contained in:
parent
63cda19446
commit
32cad1ffb8
965 changed files with 1708 additions and 1707 deletions
48
include/system/vhost-user-backend.h
Normal file
48
include/system/vhost-user-backend.h
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* QEMU vhost-user backend
|
||||
*
|
||||
* Copyright (C) 2018 Red Hat Inc
|
||||
*
|
||||
* Authors:
|
||||
* Marc-André Lureau <marcandre.lureau@redhat.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
#ifndef QEMU_VHOST_USER_BACKEND_H
|
||||
#define QEMU_VHOST_USER_BACKEND_H
|
||||
|
||||
#include "qom/object.h"
|
||||
#include "exec/memory.h"
|
||||
#include "qemu/option.h"
|
||||
#include "qemu/bitmap.h"
|
||||
#include "hw/virtio/vhost.h"
|
||||
#include "hw/virtio/vhost-user.h"
|
||||
#include "chardev/char-fe.h"
|
||||
#include "io/channel.h"
|
||||
|
||||
#define TYPE_VHOST_USER_BACKEND "vhost-user-backend"
|
||||
OBJECT_DECLARE_SIMPLE_TYPE(VhostUserBackend,
|
||||
VHOST_USER_BACKEND)
|
||||
|
||||
|
||||
|
||||
struct VhostUserBackend {
|
||||
/* private */
|
||||
Object parent;
|
||||
|
||||
char *chr_name;
|
||||
CharBackend chr;
|
||||
VhostUserState vhost_user;
|
||||
struct vhost_dev dev;
|
||||
VirtIODevice *vdev;
|
||||
bool started;
|
||||
bool completed;
|
||||
};
|
||||
|
||||
int vhost_user_backend_dev_init(VhostUserBackend *b, VirtIODevice *vdev,
|
||||
unsigned nvqs, Error **errp);
|
||||
void vhost_user_backend_start(VhostUserBackend *b);
|
||||
void vhost_user_backend_stop(VhostUserBackend *b);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue