We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c32cda commit d2f1417Copy full SHA for d2f1417
arch/arm64/kvm/trace_arm.h
@@ -176,7 +176,7 @@ TRACE_EVENT(kvm_set_way_flush,
176
),
177
178
TP_printk("S/W flush at 0x%016lx (cache %s)",
179
- __entry->vcpu_pc, __entry->cache ? "on" : "off")
+ __entry->vcpu_pc, str_on_off(__entry->cache))
180
);
181
182
TRACE_EVENT(kvm_toggle_cache,
@@ -196,8 +196,8 @@ TRACE_EVENT(kvm_toggle_cache,
196
197
198
TP_printk("VM op at 0x%016lx (cache was %s, now %s)",
199
- __entry->vcpu_pc, __entry->was ? "on" : "off",
200
- __entry->now ? "on" : "off")
+ __entry->vcpu_pc, str_on_off(__entry->was),
+ str_on_off(__entry->now))
201
202
203
/*
0 commit comments