From 6a7b47a786bb16d36ad6f1733138d4aeb233bb3d Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Thu, 25 Aug 2016 23:10:24 -0400 Subject: 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 Message-Id: <1472181025-10889-2-git-send-email-ehabkost@redhat.com> Signed-off-by: Paolo Bonzini --- scripts/kvm/vmxcap | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts/kvm') 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] -- cgit v1.2.1