mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-01 20:05:19 +00:00
qemu: blockjob: Remove header dependency on qemu_domain.h
The blockjob module uses 'qemuDomainAsyncJob' in it's public headers. As I plan adding a new structure containing job data which will need to be included in "qemu_domain.h" it's necessary to break the circular dependency. Convert 'qemuDomainAsyncJob' type to 'int' as it's an enum. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
f2bc59e48e
commit
f5eadd1d92
@ -86,7 +86,7 @@ static void
|
||||
qemuBlockJobEventProcess(virQEMUDriverPtr driver,
|
||||
virDomainObjPtr vm,
|
||||
virDomainDiskDefPtr disk,
|
||||
qemuDomainAsyncJob asyncJob,
|
||||
int asyncJob,
|
||||
int type,
|
||||
int status)
|
||||
{
|
||||
@ -210,7 +210,7 @@ qemuBlockJobEventProcess(virQEMUDriverPtr driver,
|
||||
*/
|
||||
int
|
||||
qemuBlockJobUpdateDisk(virDomainObjPtr vm,
|
||||
qemuDomainAsyncJob asyncJob,
|
||||
int asyncJob,
|
||||
virDomainDiskDefPtr disk,
|
||||
char **error)
|
||||
{
|
||||
@ -270,7 +270,7 @@ qemuBlockJobSyncBeginDisk(virDomainDiskDefPtr disk)
|
||||
*/
|
||||
void
|
||||
qemuBlockJobSyncEndDisk(virDomainObjPtr vm,
|
||||
qemuDomainAsyncJob asyncJob,
|
||||
int asyncJob,
|
||||
virDomainDiskDefPtr disk)
|
||||
{
|
||||
VIR_DEBUG("disk=%s", disk->dst);
|
||||
|
@ -24,16 +24,15 @@
|
||||
|
||||
# include "internal.h"
|
||||
# include "qemu_conf.h"
|
||||
# include "qemu_domain.h"
|
||||
|
||||
int qemuBlockJobUpdateDisk(virDomainObjPtr vm,
|
||||
qemuDomainAsyncJob asyncJob,
|
||||
int asyncJob,
|
||||
virDomainDiskDefPtr disk,
|
||||
char **error);
|
||||
|
||||
void qemuBlockJobSyncBeginDisk(virDomainDiskDefPtr disk);
|
||||
void qemuBlockJobSyncEndDisk(virDomainObjPtr vm,
|
||||
qemuDomainAsyncJob asyncJob,
|
||||
int asyncJob,
|
||||
virDomainDiskDefPtr disk);
|
||||
|
||||
#endif /* LIBVIRT_QEMU_BLOCKJOB_H */
|
||||
|
Loading…
x
Reference in New Issue
Block a user