From: Alex Bennée Date: Tue, 27 Feb 2018 09:52:31 +0000 (+0300) Subject: replay/replay.c: bump REPLAY_VERSION again X-Git-Tag: v2.12.0-rc0~16^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80be169c1fd178ed18d17012b7cdc09850ea8cd7;p=thirdparty%2Fqemu.git replay/replay.c: bump REPLAY_VERSION again This time commit 802f045a5f61b781df55e4492d896b4d20503ba7 broke the replay file format. Also add a comment about this to replay-internal.h. Signed-off-by: Alex Bennée Reviewed-off-by: Pavel Dovgalyuk Acked-by: Paolo Bonzini Message-Id: <20180227095231.1060.91180.stgit@pasha-VirtualBox> Signed-off-by: Paolo Bonzini --- diff --git a/replay/replay-internal.h b/replay/replay-internal.h index be96d7e879c..8e4c7017510 100644 --- a/replay/replay-internal.h +++ b/replay/replay-internal.h @@ -12,7 +12,7 @@ * */ - +/* Any changes to order/number of events will need to bump REPLAY_VERSION */ enum ReplayEvents { /* for instruction event */ EVENT_INSTRUCTION, diff --git a/replay/replay.c b/replay/replay.c index 7a23c62d618..9cddb6bfc9f 100644 --- a/replay/replay.c +++ b/replay/replay.c @@ -22,7 +22,7 @@ /* Current version of the replay mechanism. Increase it when file format changes. */ -#define REPLAY_VERSION 0xe02006 +#define REPLAY_VERSION 0xe02007 /* Size of replay log header */ #define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t))