mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -06:00
So here it is, let's see what happens.
-----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQEcBAABCAAGBQJWPHM6AAoJEL/70l94x66DK5YIAJTNthYWL8eNhQ1iek6CLlV+ etVXm3JDmkV0zOfYVHLBb44VLZ6I1ocas+57F/kmz7SKpMLiI6bMXRxhTSkiO4D+ 3N36cWQf3fq+P0DmxuikMlYGz8V6QQ5PQE2xJKV0ZIWAkiqInxilkN3qt81sNR+A A9Ohom3sc0eGHyYJcVDK4krbnNSAZjIB2yMWperw61x+GYAhxjA02HPUgB32KK6q KrdnKmnRu9Cw6y4wTCbbDITJztPexZYsX2DOJh30wC0eNcE+MZ7J2im8Frpxe+Ml C8MUuvSqLOyeu9tUfrXGzd6kMtEKrmU+fh2nNbxJbtfowDjkW2jcIEgC0UjkGE4= =BF1q -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream-replay' into staging So here it is, let's see what happens. # gpg: Signature made Fri 06 Nov 2015 09:30:34 GMT using RSA key ID 78C7AE83 # gpg: Good signature from "Paolo Bonzini <bonzini@gnu.org>" # gpg: aka "Paolo Bonzini <pbonzini@redhat.com>" * remotes/bonzini/tags/for-upstream-replay: replay: recording of the user input replay: command line options replay: replay blockers for devices replay: initialization and deinitialization replay: ptimer bottom halves: introduce bh call function replay: checkpoints icount: improve counting for record/replay replay: shutdown event replay: recording and replaying clock ticks replay: asynchronous events infrastructure replay: interrupts and exceptions cpu: replay instructions sequence cpu-exec: allow temporary disabling icount replay: introduce icount event replay: introduce mutex to protect the replay log replay: internal functions for replay log replay: global variables and function stubs Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
9319738080
30 changed files with 1803 additions and 58 deletions
60
vl.c
60
vl.c
|
@ -122,6 +122,8 @@ int main(int argc, char **argv)
|
|||
#include "qapi-event.h"
|
||||
#include "exec/semihost.h"
|
||||
#include "crypto/init.h"
|
||||
#include "sysemu/replay.h"
|
||||
#include "qapi/qmp/qerror.h"
|
||||
|
||||
#define MAX_VIRTIO_CONSOLES 1
|
||||
#define MAX_SCLP_CONSOLES 1
|
||||
|
@ -474,6 +476,12 @@ static QemuOptsList qemu_icount_opts = {
|
|||
}, {
|
||||
.name = "sleep",
|
||||
.type = QEMU_OPT_BOOL,
|
||||
}, {
|
||||
.name = "rr",
|
||||
.type = QEMU_OPT_STRING,
|
||||
}, {
|
||||
.name = "rrfile",
|
||||
.type = QEMU_OPT_STRING,
|
||||
},
|
||||
{ /* end of list */ }
|
||||
},
|
||||
|
@ -846,7 +854,11 @@ static void configure_rtc(QemuOpts *opts)
|
|||
if (!strcmp(value, "utc")) {
|
||||
rtc_utc = 1;
|
||||
} else if (!strcmp(value, "localtime")) {
|
||||
Error *blocker = NULL;
|
||||
rtc_utc = 0;
|
||||
error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED,
|
||||
"-rtc base=localtime");
|
||||
replay_add_blocker(blocker);
|
||||
} else {
|
||||
configure_rtc_date_offset(value, 0);
|
||||
}
|
||||
|
@ -1255,6 +1267,11 @@ static void smp_parse(QemuOpts *opts)
|
|||
exit(1);
|
||||
}
|
||||
|
||||
if (smp_cpus > 1 || smp_cores > 1 || smp_threads > 1) {
|
||||
Error *blocker = NULL;
|
||||
error_setg(&blocker, QERR_REPLAY_NOT_SUPPORTED, "smp");
|
||||
replay_add_blocker(blocker);
|
||||
}
|
||||
}
|
||||
|
||||
static void realtime_init(void)
|
||||
|
@ -1641,15 +1658,21 @@ static void qemu_kill_report(void)
|
|||
static int qemu_reset_requested(void)
|
||||
{
|
||||
int r = reset_requested;
|
||||
reset_requested = 0;
|
||||
return r;
|
||||
if (r && replay_checkpoint(CHECKPOINT_RESET_REQUESTED)) {
|
||||
reset_requested = 0;
|
||||
return r;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
static int qemu_suspend_requested(void)
|
||||
{
|
||||
int r = suspend_requested;
|
||||
suspend_requested = 0;
|
||||
return r;
|
||||
if (r && replay_checkpoint(CHECKPOINT_SUSPEND_REQUESTED)) {
|
||||
suspend_requested = 0;
|
||||
return r;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
static WakeupReason qemu_wakeup_requested(void)
|
||||
|
@ -1797,12 +1820,18 @@ void qemu_system_killed(int signal, pid_t pid)
|
|||
shutdown_signal = signal;
|
||||
shutdown_pid = pid;
|
||||
no_shutdown = 0;
|
||||
qemu_system_shutdown_request();
|
||||
|
||||
/* Cannot call qemu_system_shutdown_request directly because
|
||||
* we are in a signal handler.
|
||||
*/
|
||||
shutdown_requested = 1;
|
||||
qemu_notify_event();
|
||||
}
|
||||
|
||||
void qemu_system_shutdown_request(void)
|
||||
{
|
||||
trace_qemu_system_shutdown_request();
|
||||
replay_shutdown_request();
|
||||
shutdown_requested = 1;
|
||||
qemu_notify_event();
|
||||
}
|
||||
|
@ -3991,6 +4020,8 @@ int main(int argc, char **argv, char **envp)
|
|||
}
|
||||
}
|
||||
|
||||
replay_configure(icount_opts);
|
||||
|
||||
opts = qemu_get_machine_opts();
|
||||
optarg = qemu_opt_get(opts, "type");
|
||||
if (optarg) {
|
||||
|
@ -4424,9 +4455,10 @@ int main(int argc, char **argv, char **envp)
|
|||
}
|
||||
|
||||
/* open the virtual block devices */
|
||||
if (snapshot)
|
||||
qemu_opts_foreach(qemu_find_opts("drive"),
|
||||
drive_enable_snapshot, NULL, NULL);
|
||||
if (snapshot || replay_mode != REPLAY_MODE_NONE) {
|
||||
qemu_opts_foreach(qemu_find_opts("drive"), drive_enable_snapshot,
|
||||
NULL, NULL);
|
||||
}
|
||||
if (qemu_opts_foreach(qemu_find_opts("drive"), drive_init_func,
|
||||
&machine_class->block_default_type, NULL)) {
|
||||
exit(1);
|
||||
|
@ -4481,6 +4513,10 @@ int main(int argc, char **argv, char **envp)
|
|||
}
|
||||
qemu_add_globals();
|
||||
|
||||
/* This checkpoint is required by replay to separate prior clock
|
||||
reading from the other reads, because timer polling functions query
|
||||
clock values from the log. */
|
||||
replay_checkpoint(CHECKPOINT_INIT);
|
||||
qdev_machine_init();
|
||||
|
||||
current_machine->ram_size = ram_size;
|
||||
|
@ -4599,6 +4635,12 @@ int main(int argc, char **argv, char **envp)
|
|||
exit(1);
|
||||
}
|
||||
|
||||
replay_start();
|
||||
|
||||
/* This checkpoint is required by replay to separate prior clock
|
||||
reading from the other reads, because timer polling functions query
|
||||
clock values from the log. */
|
||||
replay_checkpoint(CHECKPOINT_RESET);
|
||||
qemu_system_reset(VMRESET_SILENT);
|
||||
register_global_state();
|
||||
if (loadvm) {
|
||||
|
@ -4636,6 +4678,8 @@ int main(int argc, char **argv, char **envp)
|
|||
}
|
||||
|
||||
main_loop();
|
||||
replay_disable_events();
|
||||
|
||||
bdrv_close_all();
|
||||
pause_all_vcpus();
|
||||
res_free();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue