From 1a607b669d0e4ba8bc4fc8042c6f65633daf848e Mon Sep 17 00:00:00 2001 From: Kaige Fu Date: Tue, 26 Jun 2018 22:44:04 +0800 Subject: [PATCH] HV: Fix wrong comment of trace_entry size sizeof trace_entry is 4 * 64bit No functional change. Signed-off-by: Kaige Fu Acked-by: Eddie Dong --- hypervisor/include/debug/trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/include/debug/trace.h b/hypervisor/include/debug/trace.h index eb27d7e05..52ad63507 100644 --- a/hypervisor/include/debug/trace.h +++ b/hypervisor/include/debug/trace.h @@ -50,7 +50,7 @@ #define TRACE_FUNC_EXIT 0xFE #define TRACE_STR 0xFF -/* sizeof(trace_entry) == 3 x 64bit */ +/* sizeof(trace_entry) == 4 x 64bit */ struct trace_entry { uint64_t tsc; /* TSC */ uint64_t id;