2016-06-29 14:47:03 +03:00
|
|
|
#ifndef LIBQOS_H
|
|
|
|
#define LIBQOS_H
|
2015-01-19 23:15:51 +03:00
|
|
|
|
|
|
|
#include "libqtest.h"
|
|
|
|
#include "libqos/pci.h"
|
|
|
|
#include "libqos/malloc-pc.h"
|
|
|
|
|
2016-09-29 13:32:46 +03:00
|
|
|
typedef struct QOSState QOSState;
|
|
|
|
|
2015-01-19 23:15:55 +03:00
|
|
|
typedef struct QOSOps {
|
2017-09-11 20:19:57 +03:00
|
|
|
QGuestAllocator *(*init_allocator)(QTestState *qts, QAllocOpts);
|
2015-01-19 23:15:55 +03:00
|
|
|
void (*uninit_allocator)(QGuestAllocator *);
|
2017-09-11 20:19:52 +03:00
|
|
|
QPCIBus *(*qpci_init)(QTestState *qts, QGuestAllocator *alloc);
|
2016-09-29 13:32:45 +03:00
|
|
|
void (*qpci_free)(QPCIBus *bus);
|
2016-09-29 13:32:46 +03:00
|
|
|
void (*shutdown)(QOSState *);
|
2015-01-19 23:15:55 +03:00
|
|
|
} QOSOps;
|
|
|
|
|
2016-09-29 13:32:46 +03:00
|
|
|
struct QOSState {
|
2015-01-19 23:15:51 +03:00
|
|
|
QTestState *qts;
|
|
|
|
QGuestAllocator *alloc;
|
2016-09-29 13:32:45 +03:00
|
|
|
QPCIBus *pcibus;
|
2015-01-19 23:15:55 +03:00
|
|
|
QOSOps *ops;
|
2016-09-29 13:32:46 +03:00
|
|
|
};
|
2015-01-19 23:15:51 +03:00
|
|
|
|
2015-01-19 23:15:55 +03:00
|
|
|
QOSState *qtest_vboot(QOSOps *ops, const char *cmdline_fmt, va_list ap);
|
|
|
|
QOSState *qtest_boot(QOSOps *ops, const char *cmdline_fmt, ...);
|
2016-09-29 13:32:46 +03:00
|
|
|
void qtest_common_shutdown(QOSState *qs);
|
2015-01-19 23:15:51 +03:00
|
|
|
void qtest_shutdown(QOSState *qs);
|
2015-11-13 22:31:42 +03:00
|
|
|
bool have_qemu_img(void);
|
2015-04-28 22:27:51 +03:00
|
|
|
void mkimg(const char *file, const char *fmt, unsigned size_mb);
|
|
|
|
void mkqcow2(const char *file, unsigned size_mb);
|
2015-05-22 21:13:43 +03:00
|
|
|
void set_context(QOSState *s);
|
|
|
|
void migrate(QOSState *from, QOSState *to, const char *uri);
|
2015-04-28 22:27:51 +03:00
|
|
|
void prepare_blkdebug_script(const char *debug_fn, const char *event);
|
2015-09-17 21:17:04 +03:00
|
|
|
void generate_pattern(void *buffer, size_t len, size_t cycle_len);
|
2015-01-19 23:15:51 +03:00
|
|
|
|
|
|
|
static inline uint64_t qmalloc(QOSState *q, size_t bytes)
|
|
|
|
{
|
|
|
|
return guest_alloc(q->alloc, bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void qfree(QOSState *q, uint64_t addr)
|
|
|
|
{
|
|
|
|
guest_free(q->alloc, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|