mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
libqos: Use explicit QTestState for fw_cfg operations
Drop one more client of global_qtest by teaching all fw_cfg test functionality (invoked through alloc-pc) to pass in an explicit QTestState, adjusting all callers. In particular, fw_cfg-test had to reorder things to create the test state prior to creating the fw_cfg (and drop a pointless strdup in the meantime), but that test now no longer depends on global_qtest. Signed-off-by: Eric Blake <eblake@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> [thuth: Fixed conflict wrt pc_alloc_init() in vhost-user-test.c] Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
@@ -29,11 +29,11 @@ void pc_alloc_uninit(QGuestAllocator *allocator)
|
||||
alloc_uninit(allocator);
|
||||
}
|
||||
|
||||
QGuestAllocator *pc_alloc_init_flags(QAllocOpts flags)
|
||||
QGuestAllocator *pc_alloc_init_flags(QTestState *qts, QAllocOpts flags)
|
||||
{
|
||||
QGuestAllocator *s;
|
||||
uint64_t ram_size;
|
||||
QFWCFG *fw_cfg = pc_fw_cfg_init();
|
||||
QFWCFG *fw_cfg = pc_fw_cfg_init(qts);
|
||||
|
||||
ram_size = qfw_cfg_get_u64(fw_cfg, FW_CFG_RAM_SIZE);
|
||||
s = alloc_init_flags(flags, 1 << 20, MIN(ram_size, 0xE0000000));
|
||||
@@ -45,7 +45,7 @@ QGuestAllocator *pc_alloc_init_flags(QAllocOpts flags)
|
||||
return s;
|
||||
}
|
||||
|
||||
inline QGuestAllocator *pc_alloc_init(void)
|
||||
inline QGuestAllocator *pc_alloc_init(QTestState *qts)
|
||||
{
|
||||
return pc_alloc_init_flags(ALLOC_NO_FLAGS);
|
||||
return pc_alloc_init_flags(qts, ALLOC_NO_FLAGS);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user