mirror of https://github.com/xqemu/xqemu.git
replay/replay.c: bump REPLAY_VERSION again
This time commit 802f045a5f
broke the
replay file format. Also add a comment about this to
replay-internal.h.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20180227095231.1060.91180.stgit@pasha-VirtualBox>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
4b930d264c
commit
80be169c1f
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* Any changes to order/number of events will need to bump REPLAY_VERSION */
|
||||||
enum ReplayEvents {
|
enum ReplayEvents {
|
||||||
/* for instruction event */
|
/* for instruction event */
|
||||||
EVENT_INSTRUCTION,
|
EVENT_INSTRUCTION,
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
/* Current version of the replay mechanism.
|
/* Current version of the replay mechanism.
|
||||||
Increase it when file format changes. */
|
Increase it when file format changes. */
|
||||||
#define REPLAY_VERSION 0xe02006
|
#define REPLAY_VERSION 0xe02007
|
||||||
/* Size of replay log header */
|
/* Size of replay log header */
|
||||||
#define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t))
|
#define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue