[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 7/9] trace: [simple] Bump up log version number
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PULL 7/9] trace: [simple] Bump up log version number |
Date: |
Mon, 9 Jun 2014 15:45:20 +0200 |
From: Lluís Vilanova <address@hidden>
The following tracetool cleanup changes the event numbering policy.
Signed-off-by: Lluís Vilanova <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
scripts/simpletrace.py | 10 +++++-----
trace/simple.c | 2 +-
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/scripts/simpletrace.py b/scripts/simpletrace.py
index 8bbcb42..b9aeb56 100755
--- a/scripts/simpletrace.py
+++ b/scripts/simpletrace.py
@@ -65,13 +65,13 @@ def read_trace_file(edict, fobj):
header[0] != header_event_id or \
header[1] != header_magic:
raise ValueError('Not a valid trace file!')
- if header[2] != 0 and \
- header[2] != 2:
- raise ValueError('Unknown version of tracelog format!')
log_version = header[2]
- if log_version == 0:
- raise ValueError('Older log format, not supported with this QEMU
release!')
+ if log_version not in [0, 2, 3]:
+ raise ValueError('Unknown version of tracelog format!')
+ if log_version != 3:
+ raise ValueError('Log format %d not supported with this QEMU release!'
+ % log_version)
while True:
rec = read_record(edict, fobj)
diff --git a/trace/simple.c b/trace/simple.c
index aaa010e..bb0b52c 100644
--- a/trace/simple.c
+++ b/trace/simple.c
@@ -28,7 +28,7 @@
#define HEADER_MAGIC 0xf2b177cb0aa429b4ULL
/** Trace file version number, bump if format changes */
-#define HEADER_VERSION 2
+#define HEADER_VERSION 3
/** Records were dropped event ID */
#define DROPPED_EVENT_ID (~(uint64_t)0 - 1)
--
1.9.0
- [Qemu-devel] [PULL 1/5] trace: add pid field to simpletrace record, (continued)
- [Qemu-devel] [PULL 1/5] trace: add pid field to simpletrace record, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 2/5] simpletrace: add support for trace record pid field, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 2/9] trace: [tracetool] Add methods 'Event.copy' and 'Arguments.copy', Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 3/9] trace: [tracetool] Spacing changes, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 3/5] trace: Replace error with warning if event is not defined, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 4/5] trace: Multi-backend tracing, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 4/9] trace: [tracetool] Cosmetic changes, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 5/5] trace: Replace fprintf with error_report and print location, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 6/9] trace: [tracetool] Change format docs to point to the generated file, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 5/9] trace: [tracetool] Show list of frontends and backends sorted by name, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 7/9] trace: [simple] Bump up log version number,
Stefan Hajnoczi <=
- [Qemu-devel] [PULL 8/9] trace: [tracetool] Minimize the amount of per-backend code, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 9/9] configure: Show trace output file conditionally, Stefan Hajnoczi, 2014/06/09
- Re: [Qemu-devel] [PULL 0/5] Tracing patches, Stefan Hajnoczi, 2014/06/09