diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2016-08-25 23:10:24 -0400 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-09-13 19:08:46 +0200 |
commit | 6a7b47a786bb16d36ad6f1733138d4aeb233bb3d (patch) | |
tree | e45771450a0e032cfe96d09018b71652816b5120 | |
parent | 65a8e1f6413a0f6f79894da710b5d6d43361d27d (diff) | |
download | qemu-6a7b47a786bb16d36ad6f1733138d4aeb233bb3d.zip |
vmxcap: Show raw MSR value
This will be helpful to allow checking of bits that are not in
the 'bits' table yet.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <1472181025-10889-2-git-send-email-ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-x | scripts/kvm/vmxcap | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kvm/vmxcap b/scripts/kvm/vmxcap index 8f0371f498..9af71ead1b 100755 --- a/scripts/kvm/vmxcap +++ b/scripts/kvm/vmxcap @@ -79,6 +79,7 @@ class Misc(object): def show(self): print self.name value = msr().read(self.msr, 0) + print ' Hex: 0x%x' % (value) def first_bit(key): if type(key) is tuple: return key[0] |