2016-06-29 13:47:03 +02:00
|
|
|
#ifndef LIBQOS_H
|
|
|
|
#define LIBQOS_H
|
2015-01-19 15:15:51 -05:00
|
|
|
|
2022-03-30 13:39:05 +04:00
|
|
|
#include "../libqtest.h"
|
2020-08-04 20:00:40 +02:00
|
|
|
#include "pci.h"
|
2022-08-24 17:40:03 +08:00
|
|
|
#include "libqos-malloc.h"
|
2015-01-19 15:15:51 -05:00
|
|
|
|
2016-09-29 12:32:46 +02:00
|
|
|
typedef struct QOSState QOSState;
|
|
|
|
|
2015-01-19 15:15:55 -05:00
|
|
|
typedef struct QOSOps {
|
2018-11-29 12:37:04 +01:00
|
|
|
void (*alloc_init)(QGuestAllocator *, QTestState *, QAllocOpts);
|
2018-07-19 13:50:27 +02:00
|
|
|
QPCIBus *(*qpci_new)(QTestState *qts, QGuestAllocator *alloc);
|
2016-09-29 12:32:45 +02:00
|
|
|
void (*qpci_free)(QPCIBus *bus);
|
2016-09-29 12:32:46 +02:00
|
|
|
void (*shutdown)(QOSState *);
|
2015-01-19 15:15:55 -05:00
|
|
|
} QOSOps;
|
|
|
|
|
2016-09-29 12:32:46 +02:00
|
|
|
struct QOSState {
|
2015-01-19 15:15:51 -05:00
|
|
|
QTestState *qts;
|
2018-11-29 12:37:04 +01:00
|
|
|
QGuestAllocator alloc;
|
2016-09-29 12:32:45 +02:00
|
|
|
QPCIBus *pcibus;
|
2015-01-19 15:15:55 -05:00
|
|
|
QOSOps *ops;
|
2016-09-29 12:32:46 +02:00
|
|
|
};
|
2015-01-19 15:15:51 -05:00
|
|
|
|
2022-12-19 08:02:04 -05:00
|
|
|
QOSState *qtest_vboot(QOSOps *ops, const char *cmdline_fmt, va_list ap)
|
|
|
|
G_GNUC_PRINTF(2, 0);
|
|
|
|
QOSState *qtest_boot(QOSOps *ops, const char *cmdline_fmt, ...)
|
|
|
|
G_GNUC_PRINTF(2, 3);
|
2016-09-29 12:32:46 +02:00
|
|
|
void qtest_common_shutdown(QOSState *qs);
|
2015-01-19 15:15:51 -05:00
|
|
|
void qtest_shutdown(QOSState *qs);
|
2015-04-28 15:27:51 -04:00
|
|
|
void mkqcow2(const char *file, unsigned size_mb);
|
2015-05-22 14:13:43 -04:00
|
|
|
void migrate(QOSState *from, QOSState *to, const char *uri);
|
2015-04-28 15:27:51 -04:00
|
|
|
void prepare_blkdebug_script(const char *debug_fn, const char *event);
|
2015-09-17 14:17:04 -04:00
|
|
|
void generate_pattern(void *buffer, size_t len, size_t cycle_len);
|
2015-01-19 15:15:51 -05:00
|
|
|
|
|
|
|
static inline uint64_t qmalloc(QOSState *q, size_t bytes)
|
|
|
|
{
|
2018-11-29 12:37:04 +01:00
|
|
|
return guest_alloc(&q->alloc, bytes);
|
2015-01-19 15:15:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void qfree(QOSState *q, uint64_t addr)
|
|
|
|
{
|
2018-11-29 12:37:04 +01:00
|
|
|
guest_free(&q->alloc, addr);
|
2015-01-19 15:15:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|