* [PATCH] SVM: support writing 0 to K8 performance counter control registers
@ 2007-12-11 14:36 Joerg Roedel
[not found] ` <11973838173230-git-send-email-joerg.roedel-5C7GfCeVMHo@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Joerg Roedel @ 2007-12-11 14:36 UTC (permalink / raw)
To: Avi Kivity
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Joerg Roedel,
Markus Rechberger
This patch is a slightly improved version of a previously submitted patch. It
lets SVM ignore writes of the value 0 to the performance counter control
registers. Thus enabling them will still fail in the guest. This is required
to boot Windows Vista 64bit.
Signed-off-by: Joerg Roedel <joerg.roedel-5C7GfCeVMHo@public.gmane.org>
Signed-off-by: Markus Rechberger <markus.rechberger-5C7GfCeVMHo@public.gmane.org>
---
drivers/kvm/svm.c | 11 +++++++++++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/drivers/kvm/svm.c b/drivers/kvm/svm.c
index 9f8564a..f81b871 100644
--- a/drivers/kvm/svm.c
+++ b/drivers/kvm/svm.c
@@ -1155,6 +1155,17 @@ static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
case MSR_IA32_SYSENTER_ESP:
svm->vmcb->save.sysenter_esp = data;
break;
+ case MSR_K7_EVNTSEL0:
+ case MSR_K7_EVNTSEL1:
+ case MSR_K7_EVNTSEL2:
+ case MSR_K7_EVNTSEL3:
+ /*
+ * only support writing 0 to the performance counters for now
+ * to make Windows happy. Should be replaced by a real
+ * performance counter emulation later.
+ */
+ if (data == 0)
+ break;
default:
return kvm_set_msr_common(vcpu, ecx, data);
}
--
1.5.2.5
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] SVM: support writing 0 to K8 performance counter control registers
[not found] ` <11973838173230-git-send-email-joerg.roedel-5C7GfCeVMHo@public.gmane.org>
@ 2007-12-11 14:47 ` Avi Kivity
2007-12-11 14:51 ` Avi Kivity
1 sibling, 0 replies; 3+ messages in thread
From: Avi Kivity @ 2007-12-11 14:47 UTC (permalink / raw)
To: Joerg Roedel
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Markus Rechberger
Joerg Roedel wrote:
> This patch is a slightly improved version of a previously submitted patch. It
> lets SVM ignore writes of the value 0 to the performance counter control
> registers. Thus enabling them will still fail in the guest. This is required
> to boot Windows Vista 64bit.
>
>
Applied, thanks.
--
error compiling committee.c: too many arguments to function
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] SVM: support writing 0 to K8 performance counter control registers
[not found] ` <11973838173230-git-send-email-joerg.roedel-5C7GfCeVMHo@public.gmane.org>
2007-12-11 14:47 ` Avi Kivity
@ 2007-12-11 14:51 ` Avi Kivity
1 sibling, 0 replies; 3+ messages in thread
From: Avi Kivity @ 2007-12-11 14:51 UTC (permalink / raw)
To: Joerg Roedel
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Markus Rechberger
Joerg Roedel wrote:
> This patch is a slightly improved version of a previously submitted patch. It
> lets SVM ignore writes of the value 0 to the performance counter control
> registers. Thus enabling them will still fail in the guest. This is required
> to boot Windows Vista 64bit.
>
> Signed-off-by: Joerg Roedel <joerg.roedel-5C7GfCeVMHo@public.gmane.org>
> Signed-off-by: Markus Rechberger <markus.rechberger-5C7GfCeVMHo@public.gmane.org>
> ---
> drivers/kvm/svm.c | 11 +++++++++++
> 1 files changed, 11 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/kvm/svm.c b/drivers/kvm/svm.c
> index 9f8564a..f81b871 100644
> --- a/drivers/kvm/svm.c
> +++ b/drivers/kvm/svm.c
> @@ -1155,6 +1155,17 @@ static int svm_set_msr(struct kvm_vcpu *vcpu, unsigned ecx, u64 data)
> case MSR_IA32_SYSENTER_ESP:
> svm->vmcb->save.sysenter_esp = data;
> break;
> + case MSR_K7_EVNTSEL0:
> + case MSR_K7_EVNTSEL1:
> + case MSR_K7_EVNTSEL2:
> + case MSR_K7_EVNTSEL3:
> + /*
> + * only support writing 0 to the performance counters for now
> + * to make Windows happy. Should be replaced by a real
> + * performance counter emulation later.
> + */
> + if (data == 0)
> + break;
> default:
> return kvm_set_msr_common(vcpu, ecx, data);
> }
>
I changed the fall-thru here to something more explicit, in case someone
wants to add more msrs.
--
error compiling committee.c: too many arguments to function
-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-12-11 14:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-11 14:36 [PATCH] SVM: support writing 0 to K8 performance counter control registers Joerg Roedel
[not found] ` <11973838173230-git-send-email-joerg.roedel-5C7GfCeVMHo@public.gmane.org>
2007-12-11 14:47 ` Avi Kivity
2007-12-11 14:51 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox