mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-13 16:15:19 +00:00
22b46ad765
QEMU 2.3 adds these new models to cover Haswell and Broadwell CPUs with updated microcode. Luckily, they also reverted former the machine type specific changes to existing models. And since these changes were never released, we don't need to hack around them in libvirt. Signed-off-by: Jiri Denemark <jdenemar@redhat.com> (cherry picked from commit c563b50605ae9895b981d198e11dbe9f6e18027b)
20 lines
503 B
C
20 lines
503 B
C
#ifdef WITH_QEMU
|
|
|
|
# include "capabilities.h"
|
|
# include "domain_conf.h"
|
|
# include "qemu/qemu_command.h"
|
|
# include "qemu/qemu_capabilities.h"
|
|
|
|
virCapsPtr testQemuCapsInit(void);
|
|
virDomainXMLOptionPtr testQemuXMLConfInit(void);
|
|
extern qemuBuildCommandLineCallbacks testCallbacks;
|
|
|
|
virQEMUCapsPtr qemuTestParseCapabilities(const char *capsFile);
|
|
|
|
extern virCPUDefPtr cpuDefault;
|
|
extern virCPUDefPtr cpuHaswell;
|
|
void testQemuCapsSetCPU(virCapsPtr caps,
|
|
virCPUDefPtr hostCPU);
|
|
|
|
#endif
|