|
|
26ba25 |
From 94150e55c2a2f43e95e5c14c753aee5900df47f1 Mon Sep 17 00:00:00 2001
|
|
|
26ba25 |
From: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Date: Wed, 11 Jul 2018 12:31:04 +0100
|
|
|
26ba25 |
Subject: [PATCH 3/4] simpletrace: Convert name from mapping record to str
|
|
|
26ba25 |
|
|
|
26ba25 |
RH-Author: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Message-id: <20180711123104.31091-2-stefanha@redhat.com>
|
|
|
26ba25 |
Patchwork-id: 81299
|
|
|
26ba25 |
O-Subject: [qemu-kvm RHEL8/virt212 PATCH 1/1] simpletrace: Convert name from mapping record to str
|
|
|
26ba25 |
Bugzilla: 1594969
|
|
|
26ba25 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
26ba25 |
RH-Acked-by: Markus Armbruster <armbru@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
26ba25 |
|
|
|
26ba25 |
The rest of the code assumes that idtoname is a (int -> str)
|
|
|
26ba25 |
dictionary, so convert the data accordingly.
|
|
|
26ba25 |
|
|
|
26ba25 |
This is necessary to make the script work with Python 3 (where
|
|
|
26ba25 |
reads from a binary file return 'bytes' objects, not 'str').
|
|
|
26ba25 |
|
|
|
26ba25 |
Fixes the following error:
|
|
|
26ba25 |
|
|
|
26ba25 |
$ python3 ./scripts/simpletrace.py trace-events-all trace-27445
|
|
|
26ba25 |
b'object_class_dynamic_cast_assert' event is logged but is not \
|
|
|
26ba25 |
declared in the trace events file, try using trace-events-all instead.
|
|
|
26ba25 |
|
|
|
26ba25 |
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
|
|
|
26ba25 |
Message-id: 20180619194549.15584-1-ehabkost@redhat.com
|
|
|
26ba25 |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
(cherry picked from commit 749c1d8e3e12c44247927d8f72f68ec0c0266f8b)
|
|
|
26ba25 |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
26ba25 |
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
|
26ba25 |
---
|
|
|
26ba25 |
scripts/simpletrace.py | 2 +-
|
|
|
26ba25 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
26ba25 |
|
|
|
26ba25 |
diff --git a/scripts/simpletrace.py b/scripts/simpletrace.py
|
|
|
26ba25 |
index d4a50a1..4ad34f9 100755
|
|
|
26ba25 |
--- a/scripts/simpletrace.py
|
|
|
26ba25 |
+++ b/scripts/simpletrace.py
|
|
|
26ba25 |
@@ -70,7 +70,7 @@ def get_record(edict, idtoname, rechdr, fobj):
|
|
|
26ba25 |
def get_mapping(fobj):
|
|
|
26ba25 |
(event_id, ) = struct.unpack('=Q', fobj.read(8))
|
|
|
26ba25 |
(len, ) = struct.unpack('=L', fobj.read(4))
|
|
|
26ba25 |
- name = fobj.read(len)
|
|
|
26ba25 |
+ name = fobj.read(len).decode()
|
|
|
26ba25 |
|
|
|
26ba25 |
return (event_id, name)
|
|
|
26ba25 |
|
|
|
26ba25 |
--
|
|
|
26ba25 |
1.8.3.1
|
|
|
26ba25 |
|