summaryrefslogtreecommitdiffstats
path: root/trace-events
diff options
context:
space:
mode:
authorEmilio G. Cota2017-11-22 03:03:15 +0100
committerAlex Bennée2019-10-28 16:12:38 +0100
commit291987c3068fb083abebb69701d04c5bab60f310 (patch)
treeefb30f7b32de91b8c4454e91993979a0b0b4055f /trace-events
parentMerge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (diff)
downloadqemu-291987c3068fb083abebb69701d04c5bab60f310.tar.gz
qemu-291987c3068fb083abebb69701d04c5bab60f310.tar.xz
qemu-291987c3068fb083abebb69701d04c5bab60f310.zip
trace: expand mem_info:size_shift to 4 bits
This will allow us to trace 32k-long memory accesses (although our maximum is something like 256 bytes at the moment). Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Emilio G. Cota <cota@braap.org> [AJB: expanded to 3->4 bits] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'trace-events')
-rw-r--r--trace-events2
1 files changed, 1 insertions, 1 deletions
diff --git a/trace-events b/trace-events
index 20821ba545..22133dfd3f 100644
--- a/trace-events
+++ b/trace-events
@@ -149,7 +149,7 @@ vcpu guest_cpu_reset(void)
# Access information can be parsed as:
#
# struct mem_info {
-# uint8_t size_shift : 2; /* interpreted as "1 << size_shift" bytes */
+# uint8_t size_shift : 4; /* interpreted as "1 << size_shift" bytes */
# bool sign_extend: 1; /* sign-extended */
# uint8_t endianness : 1; /* 0: little, 1: big */
# bool store : 1; /* wheter it's a store operation */