commit | 147f1a1fe5d7e6b01b8df4d0cbd6f9eaf6b6c73b | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Thu Feb 13 18:24:48 2020 +0100 |
committer | Paolo Bonzini <pbonzini@redhat.com> | Thu Feb 20 18:13:44 2020 +0100 |
tree | 583b3b2ed0c2b4c4f6977c3e9ccb1b094ba7ec6e | |
parent | 463bfeeead97416ad2b141421f51888054dc0e18 [diff] |
KVM: x86: fix incorrect comparison in trace event The "u" field in the event has three states, -1/0/1. Using u8 however means that comparison with -1 will always fail, so change to signed char. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>