summaryrefslogtreecommitdiffstats
path: root/tests/libqos/libqos.h
diff options
context:
space:
mode:
authorLaurent Vivier2016-09-29 12:32:45 +0200
committerDavid Gibson2016-10-06 07:15:53 +0200
commit2ecd7e2f25a57e8966a15ee50a0afacd4ec067da (patch)
tree1b66fc28278e9e2955d67698659309c222bab97c /tests/libqos/libqos.h
parentlibqos: add PPC64 PCI support (diff)
downloadqemu-2ecd7e2f25a57e8966a15ee50a0afacd4ec067da.tar.gz
qemu-2ecd7e2f25a57e8966a15ee50a0afacd4ec067da.tar.xz
qemu-2ecd7e2f25a57e8966a15ee50a0afacd4ec067da.zip
libqos: add PCI management in qtest_vboot()/qtest_shutdown()
Signed-off-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Greg Kurz <groug@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests/libqos/libqos.h')
-rw-r--r--tests/libqos/libqos.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/libqos/libqos.h b/tests/libqos/libqos.h
index 604980d125..a9f699019c 100644
--- a/tests/libqos/libqos.h
+++ b/tests/libqos/libqos.h
@@ -8,11 +8,14 @@
typedef struct QOSOps {
QGuestAllocator *(*init_allocator)(QAllocOpts);
void (*uninit_allocator)(QGuestAllocator *);
+ QPCIBus *(*qpci_init)(QGuestAllocator *alloc);
+ void (*qpci_free)(QPCIBus *bus);
} QOSOps;
typedef struct QOSState {
QTestState *qts;
QGuestAllocator *alloc;
+ QPCIBus *pcibus;
QOSOps *ops;
} QOSState;