QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
583 B
19 lines
583 B
#ifndef LIBQOS_SPAPR_H
|
|
#define LIBQOS_SPAPR_H
|
|
|
|
#include "libqos.h"
|
|
|
|
QOSState *qtest_spapr_vboot(const char *cmdline_fmt, va_list ap)
|
|
G_GNUC_PRINTF(1, 0);
|
|
QOSState *qtest_spapr_boot(const char *cmdline_fmt, ...)
|
|
G_GNUC_PRINTF(1, 2);
|
|
void qtest_spapr_shutdown(QOSState *qs);
|
|
|
|
/* List of capabilities needed to silence warnings with TCG */
|
|
#define PSERIES_DEFAULT_CAPABILITIES \
|
|
"cap-cfpc=broken," \
|
|
"cap-sbbc=broken," \
|
|
"cap-ibs=broken," \
|
|
"cap-ccf-assist=off,"
|
|
|
|
#endif
|
|
|