[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 4/9] trace: [tracetool] Cosmetic changes
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PULL 4/9] trace: [tracetool] Cosmetic changes |
Date: |
Mon, 9 Jun 2014 15:45:16 +0200 |
From: Lluís Vilanova <address@hidden>
Signed-off-by: Lluís Vilanova <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
scripts/tracetool/__init__.py | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/scripts/tracetool/__init__.py b/scripts/tracetool/__init__.py
index 3cf7a4e..7abffb6 100644
--- a/scripts/tracetool/__init__.py
+++ b/scripts/tracetool/__init__.py
@@ -256,18 +256,18 @@ def generate(fevents, format, backend,
format = str(format)
if len(format) is 0:
raise TracetoolError("format not set")
- mformat = format.replace("-", "_")
- if not tracetool.format.exists(mformat):
+ if not tracetool.format.exists(format):
raise TracetoolError("unknown format: %s" % format)
+ format = format.replace("-", "_")
backend = str(backend)
if len(backend) is 0:
raise TracetoolError("backend not set")
- mbackend = backend.replace("-", "_")
- if not tracetool.backend.exists(mbackend):
+ if not tracetool.backend.exists(backend):
raise TracetoolError("unknown backend: %s" % backend)
+ backend = backend.replace("-", "_")
- if not tracetool.backend.compatible(mbackend, mformat):
+ if not tracetool.backend.compatible(backend, format):
raise TracetoolError("backend '%s' not compatible with format '%s'" %
(backend, format))
@@ -280,7 +280,7 @@ def generate(fevents, format, backend,
if backend == "nop":
( e.properies.add("disable") for e in events )
- tracetool.format.generate_begin(mformat, events)
+ tracetool.format.generate_begin(format, events)
tracetool.backend.generate("nop", format,
[ e
for e in events
@@ -289,4 +289,4 @@ def generate(fevents, format, backend,
[ e
for e in events
if "disable" not in e.properties ])
- tracetool.format.generate_end(mformat, events)
+ tracetool.format.generate_end(format, events)
--
1.9.0
- [Qemu-devel] [PULL 0/5] Tracing patches, Stefan Hajnoczi, 2014/06/09
- [Qemu-devel] [PULL 1/9] trace: [tracetool] Add method 'Event.api' to build event names, Stefan Hajnoczi, 2014/06/09
- [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 <=
- [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, 2014/06/09
- [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