summaryrefslogtreecommitdiff
path: root/util/decode_packet_trace.py
diff options
context:
space:
mode:
Diffstat (limited to 'util/decode_packet_trace.py')
-rwxr-xr-xutil/decode_packet_trace.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/util/decode_packet_trace.py b/util/decode_packet_trace.py
index e9105753d..97d344163 100755
--- a/util/decode_packet_trace.py
+++ b/util/decode_packet_trace.py
@@ -118,11 +118,15 @@ def main():
if packet.HasField('pkt_id'):
ascii_out.write('%s,' % (packet.pkt_id))
if packet.HasField('flags'):
- ascii_out.write('%s,%s,%s,%s,%s\n' % (cmd, packet.addr, packet.size,
+ ascii_out.write('%s,%s,%s,%s,%s' % (cmd, packet.addr, packet.size,
packet.flags, packet.tick))
else:
- ascii_out.write('%s,%s,%s,%s\n' % (cmd, packet.addr, packet.size,
+ ascii_out.write('%s,%s,%s,%s' % (cmd, packet.addr, packet.size,
packet.tick))
+ if packet.HasField('pc'):
+ ascii_out.write(',%s\n' % (packet.pc))
+ else:
+ ascii_out.write('\n')
print "Parsed packets:", num_packets