From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50548) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1crR6a-0004mL-KV for qemu-devel@nongnu.org; Fri, 24 Mar 2017 11:26:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1crR6W-0000qy-NA for qemu-devel@nongnu.org; Fri, 24 Mar 2017 11:26:20 -0400 Received: from mail-wm0-x230.google.com ([2a00:1450:400c:c09::230]:35851) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1crR6W-0000qk-Gg for qemu-devel@nongnu.org; Fri, 24 Mar 2017 11:26:16 -0400 Received: by mail-wm0-x230.google.com with SMTP id n11so15832037wma.1 for ; Fri, 24 Mar 2017 08:26:16 -0700 (PDT) From: =?UTF-8?q?Alex=20Benn=C3=A9e?= Date: Fri, 24 Mar 2017 15:26:07 +0000 Message-Id: <20170324152607.6604-1-alex.bennee@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH-for-2.9] replay/replay.c: bump REPLAY_VERSION List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: pavel.dovgaluk@ispras.ru Cc: qemu-devel@nongnu.org, =?UTF-8?q?Alex=20Benn=C3=A9e?= A previous commit (3d4d16f4) added support for audio record/playback. However this breaks the logfile ABI due to the re-ordering of the ReplayEvents enum. The REPLAY_VERSION check is meant to prevent you from using old log files in newer QEMUs but this is currently broken. Signed-off-by: Alex Bennée --- replay/replay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/replay/replay.c b/replay/replay.c index 78e2a7e570..9e0724e756 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 0xe02005 +#define REPLAY_VERSION 0xe02006 /* Size of replay log header */ #define HEADER_SIZE (sizeof(uint32_t) + sizeof(uint64_t)) -- 2.11.0