a783f8ad4e
...that maintains compatibility with existing Xen toolstacks. Xen toolstacks instantiate PV backends by simply writing information into xenstore and expecting a backend implementation to be watching for this. This patch adds a new 'xen-backend' module to allow individual XenDevice implementations to register create and destroy functions. The creator will be called when a tool-stack instantiates a new backend in this way, and the destructor will then be called after the resulting XenDevice object is unrealized. To support this it is also necessary to add new watchers into the XenBus implementation to handle enumeration of new backends and also destruction of XenDevice-s when the toolstack sets the backend 'online' key to 0. NOTE: This patch only adds the framework. A subsequent patch will add a creator function for xen-block devices. Signed-off-by: Paul Durrant <paul.durrant@citrix.com> Reviewed-by: Anthony Perard <anthony.perard@citrix.com> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
40 lines
1.3 KiB
C
40 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2018 Citrix Systems Inc.
|
|
*
|
|
* 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 HW_XEN_BACKEND_H
|
|
#define HW_XEN_BACKEND_H
|
|
|
|
#include "hw/xen/xen-bus.h"
|
|
|
|
typedef struct XenBackendInstance XenBackendInstance;
|
|
|
|
typedef void (*XenBackendDeviceCreate)(XenBackendInstance *backend,
|
|
QDict *opts, Error **errp);
|
|
typedef void (*XenBackendDeviceDestroy)(XenBackendInstance *backend,
|
|
Error **errp);
|
|
|
|
typedef struct XenBackendInfo {
|
|
const char *type;
|
|
XenBackendDeviceCreate create;
|
|
XenBackendDeviceDestroy destroy;
|
|
} XenBackendInfo;
|
|
|
|
XenBus *xen_backend_get_bus(XenBackendInstance *backend);
|
|
const char *xen_backend_get_name(XenBackendInstance *backend);
|
|
|
|
void xen_backend_set_device(XenBackendInstance *backend,
|
|
XenDevice *xendevice);
|
|
XenDevice *xen_backend_get_device(XenBackendInstance *backend);
|
|
|
|
void xen_backend_register(const XenBackendInfo *info);
|
|
|
|
void xen_backend_device_create(XenBus *xenbus, const char *type,
|
|
const char *name, QDict *opts, Error **errp);
|
|
bool xen_backend_try_device_destroy(XenDevice *xendev, Error **errp);
|
|
|
|
#endif /* HW_XEN_BACKEND_H */
|