All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi-atKUWr5tajBWk0Htik3J/w@public.gmane.org>
To: Joerg Roedel <joerg.roedel-5C7GfCeVMHo@public.gmane.org>
Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org,
	Markus Rechberger
	<markus.rechberger-5C7GfCeVMHo@public.gmane.org>
Subject: Re: [PATCH] SVM: support writing 0 to K8 performance counter control registers
Date: Tue, 11 Dec 2007 16:51:39 +0200	[thread overview]
Message-ID: <475EA3FB.1040106@qumranet.com> (raw)
In-Reply-To: <11973838173230-git-send-email-joerg.roedel-5C7GfCeVMHo@public.gmane.org>

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

      parent reply	other threads:[~2007-12-11 14:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 message]

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=475EA3FB.1040106@qumranet.com \
    --to=avi-atkuwr5tajbwk0htik3j/w@public.gmane.org \
    --cc=joerg.roedel-5C7GfCeVMHo@public.gmane.org \
    --cc=kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=markus.rechberger-5C7GfCeVMHo@public.gmane.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.