db1015e92e
Some typedefs and macros are defined after the type check macros. This makes it difficult to automatically replace their definitions with OBJECT_DECLARE_TYPE. Patch generated using: $ ./scripts/codeconverter/converter.py -i \ --pattern=QOMStructTypedefSplit $(git grep -l '' -- '*.[ch]') which will split "typdef struct { ... } TypedefName" declarations. Followed by: $ ./scripts/codeconverter/converter.py -i --pattern=MoveSymbols \ $(git grep -l '' -- '*.[ch]') which will: - move the typedefs and #defines above the type check macros - add missing #include "qom/object.h" lines if necessary Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-9-ehabkost@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Message-Id: <20200831210740.126168-10-ehabkost@redhat.com> Message-Id: <20200831210740.126168-11-ehabkost@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/*
|
|
* 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"
|
|
typedef struct VhostUserBackend VhostUserBackend;
|
|
typedef struct VhostUserBackendClass VhostUserBackendClass;
|
|
#define VHOST_USER_BACKEND(obj) \
|
|
OBJECT_CHECK(VhostUserBackend, (obj), TYPE_VHOST_USER_BACKEND)
|
|
#define VHOST_USER_BACKEND_GET_CLASS(obj) \
|
|
OBJECT_GET_CLASS(VhostUserBackendClass, (obj), TYPE_VHOST_USER_BACKEND)
|
|
#define VHOST_USER_BACKEND_CLASS(klass) \
|
|
OBJECT_CLASS_CHECK(VhostUserBackendClass, (klass), TYPE_VHOST_USER_BACKEND)
|
|
|
|
|
|
struct VhostUserBackendClass {
|
|
ObjectClass parent_class;
|
|
};
|
|
|
|
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
|