From: Avi Kivity <avi@redhat.com>
To: Alexander Graf <agraf@suse.de>
Cc: kvm@vger.kernel.org, joerg.roedel@amd.com
Subject: Re: [PATCH 2/4] Implement Hyper-V MSRs v2
Date: Tue, 19 May 2009 15:52:08 +0300 [thread overview]
Message-ID: <4A12AB78.2070509@redhat.com> (raw)
In-Reply-To: <1242730443-15656-3-git-send-email-agraf@suse.de>
Alexander Graf wrote:
> Hyper-V uses some MSRs, some of which are actually reserved for BIOS usage.
>
> But let's be nice today and have it its way, because otherwise it fails
> terribly.
>
> v2 changes:
> - remove the 0x40000081 MSR definition
> - add pr_unimpl() on unimplemented writes
>
> Signed-off-by: Alexander Graf <agraf@suse.de>
> ---
> arch/x86/kvm/svm.c | 5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)
>
> diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
> index ef43a18..4b4eadd 100644
> --- a/arch/x86/kvm/svm.c
> +++ b/arch/x86/kvm/svm.c
> @@ -2034,6 +2034,11 @@ static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
> case MSR_VM_HSAVE_PA:
> svm->hsave_msr = data;
> break;
> + case MSR_VM_CR:
> + case MSR_VM_IGNNE:
> + case MSR_K8_HWCR:
> + pr_unimpl(vcpu, "unimplemented wrmsr: 0x%x data 0x%llx\n", ecx, data);
> + break;
>
We can be nicer, if the write doesn't set bits which we don't implement,
we can let it proceed silently. See for example MSR_IA32_DEBUGCTLMSR.
Most likely the values written are already correctly implemented (by
doing nothing).
--
error compiling committee.c: too many arguments to function
next prev parent reply other threads:[~2009-05-19 12:52 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-05-19 10:53 [PATCH 0/4] Add rudimentary Hyper-V guest support v2 Alexander Graf
2009-05-19 10:54 ` [PATCH 1/4] Add definition for IGNNE MSR Alexander Graf
2009-05-19 10:54 ` [PATCH 2/4] Implement Hyper-V MSRs v2 Alexander Graf
2009-05-19 10:54 ` [PATCH 3/4] Nested SVM: Implement INVLPGA v2 Alexander Graf
2009-05-19 10:54 ` [PATCH 4/4] Nested SVM: Improve interrupt injection v2 Alexander Graf
2009-05-19 13:22 ` Gleb Natapov
2009-06-15 11:47 ` Alexander Graf
2009-06-15 11:56 ` Gleb Natapov
2009-05-19 12:58 ` [PATCH 3/4] Nested SVM: Implement INVLPGA v2 Avi Kivity
2009-05-19 13:10 ` Alexander Graf
2009-05-19 13:19 ` Avi Kivity
2009-05-19 13:54 ` Marcelo Tosatti
2009-05-19 13:56 ` Avi Kivity
2009-05-19 13:58 ` Marcelo Tosatti
2009-05-19 15:18 ` Alexander Graf
2009-05-19 16:33 ` Marcelo Tosatti
2009-05-19 16:35 ` Avi Kivity
2009-05-19 12:52 ` Avi Kivity [this message]
2009-06-15 11:45 ` [PATCH 2/4] Implement Hyper-V MSRs v2 Alexander Graf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4A12AB78.2070509@redhat.com \
--to=avi@redhat.com \
--cc=agraf@suse.de \
--cc=joerg.roedel@amd.com \
--cc=kvm@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).