diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-12 10:42:18 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-11-25 11:24:23 -0500 |
commit | aba2f06c070f604e388cf77b1dcc7f4cf4577eb0 (patch) | |
tree | 281c850b68b0bf9d68c5c3c58074f3cc09f115a1 | |
parent | 46896c73c1a4dde527c3a3cc43379deeb41985a1 (diff) |
KVM: x86: correctly print #AC in traces
Poor #AC was so unimportant until a few days ago that we were
not even tracing its name correctly. But now it's all over
the place.
Cc: stable@vger.kernel.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | arch/x86/kvm/trace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/trace.h b/arch/x86/kvm/trace.h index 120302511802..ab9ae67a80e4 100644 --- a/arch/x86/kvm/trace.h +++ b/arch/x86/kvm/trace.h | |||
@@ -268,7 +268,7 @@ TRACE_EVENT(kvm_inj_virq, | |||
268 | #define kvm_trace_sym_exc \ | 268 | #define kvm_trace_sym_exc \ |
269 | EXS(DE), EXS(DB), EXS(BP), EXS(OF), EXS(BR), EXS(UD), EXS(NM), \ | 269 | EXS(DE), EXS(DB), EXS(BP), EXS(OF), EXS(BR), EXS(UD), EXS(NM), \ |
270 | EXS(DF), EXS(TS), EXS(NP), EXS(SS), EXS(GP), EXS(PF), \ | 270 | EXS(DF), EXS(TS), EXS(NP), EXS(SS), EXS(GP), EXS(PF), \ |
271 | EXS(MF), EXS(MC) | 271 | EXS(MF), EXS(AC), EXS(MC) |
272 | 272 | ||
273 | /* | 273 | /* |
274 | * Tracepoint for kvm interrupt injection: | 274 | * Tracepoint for kvm interrupt injection: |