mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03:00
qemu: Move struct qemuDomainDiskInfo to qemu_domain.h
This commit is contained in:
parent
293668cd70
commit
5f963d89b1
@ -287,13 +287,6 @@ virCapsPtr virQEMUDriverCreateCapabilities(virQEMUDriverPtr driver);
|
||||
virCapsPtr virQEMUDriverGetCapabilities(virQEMUDriverPtr driver,
|
||||
bool refresh);
|
||||
|
||||
struct qemuDomainDiskInfo {
|
||||
bool removable;
|
||||
bool locked;
|
||||
bool tray_open;
|
||||
int io_status;
|
||||
};
|
||||
|
||||
typedef struct _qemuSharedDeviceEntry qemuSharedDeviceEntry;
|
||||
typedef qemuSharedDeviceEntry *qemuSharedDeviceEntryPtr;
|
||||
|
||||
|
@ -304,6 +304,13 @@ struct _qemuDomainDiskPrivate {
|
||||
# define QEMU_DOMAIN_HOSTDEV_PRIVATE(hostdev) \
|
||||
((qemuDomainHostdevPrivatePtr) (hostdev)->privateData)
|
||||
|
||||
struct qemuDomainDiskInfo {
|
||||
bool removable;
|
||||
bool locked;
|
||||
bool tray_open;
|
||||
int io_status;
|
||||
};
|
||||
|
||||
typedef struct _qemuDomainHostdevPrivate qemuDomainHostdevPrivate;
|
||||
typedef qemuDomainHostdevPrivate *qemuDomainHostdevPrivatePtr;
|
||||
struct _qemuDomainHostdevPrivate {
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include "testutils.h"
|
||||
#include "testutilsqemu.h"
|
||||
#include "qemumonitortestutils.h"
|
||||
#include "qemu/qemu_conf.h"
|
||||
#include "qemu/qemu_domain.h"
|
||||
#include "qemu/qemu_monitor_json.h"
|
||||
#include "virthread.h"
|
||||
#include "virerror.h"
|
||||
|
Loading…
Reference in New Issue
Block a user