public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
From: Joerg Roedel <joerg.roedel@amd.com>
To: Alexander Graf <agraf@suse.de>
Cc: kvm@vger.kernel.org
Subject: Re: [PATCH 5/6] Nested SVM: Implement INVLPGA
Date: Fri, 15 May 2009 15:43:02 +0200	[thread overview]
Message-ID: <20090515134301.GX9835@amd.com> (raw)
In-Reply-To: <1242375740-31222-6-git-send-email-agraf@suse.de>

On Fri, May 15, 2009 at 10:22:19AM +0200, Alexander Graf wrote:
> SVM adds another way to do INVLPG by ASID which Hyper-V makes use of,
> so let's implement it!
> 
> For now we just do the same thing invlpg does, as asid switching
> means we flush the mmu anyways. That might change one day though.
> 
> Signed-off-by: Alexander Graf <agraf@suse.de>
> ---
>  arch/x86/kvm/svm.c |   14 +++++++++++++-
>  1 files changed, 13 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c
> index 30e6b43..b2c6cf3 100644
> --- a/arch/x86/kvm/svm.c
> +++ b/arch/x86/kvm/svm.c
> @@ -1785,6 +1785,18 @@ static int clgi_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
>  	return 1;
>  }
>  
> +static int invlpga_interception(struct vcpu_svm *svm, struct kvm_run *kvm_run)
> +{
> +	struct kvm_vcpu *vcpu = &svm->vcpu;
> +	nsvm_printk("INVLPGA\n");
> +	svm->next_rip = kvm_rip_read(&svm->vcpu) + 3;
> +	skip_emulated_instruction(&svm->vcpu);
> +
> +	kvm_mmu_reset_context(vcpu);
> +	kvm_mmu_load(vcpu);
> +	return 1;
> +}
> +

Hmm, since we flush the TLB on every nested-guest entry I think we can
make this function a nop.

>  static int invalid_op_interception(struct vcpu_svm *svm,
>  				   struct kvm_run *kvm_run)
>  {
> @@ -2130,7 +2142,7 @@ static int (*svm_exit_handlers[])(struct vcpu_svm *svm,
>  	[SVM_EXIT_INVD]                         = emulate_on_interception,
>  	[SVM_EXIT_HLT]				= halt_interception,
>  	[SVM_EXIT_INVLPG]			= invlpg_interception,
> -	[SVM_EXIT_INVLPGA]			= invalid_op_interception,
> +	[SVM_EXIT_INVLPGA]			= invlpga_interception,
>  	[SVM_EXIT_IOIO] 		  	= io_interception,
>  	[SVM_EXIT_MSR]				= msr_interception,
>  	[SVM_EXIT_TASK_SWITCH]			= task_switch_interception,
> -- 
> 1.6.0.2
> 
> 

-- 
           | Advanced Micro Devices GmbH
 Operating | Karl-Hammerschmidt-Str. 34, 85609 Dornach bei München
 System    | 
 Research  | Geschäftsführer: Thomas M. McCoy, Giuliano Meroni
 Center    | Sitz: Dornach, Gemeinde Aschheim, Landkreis München
           | Registergericht München, HRB Nr. 43632


  parent reply	other threads:[~2009-05-15 14:03 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-15  8:22 [PATCH 0/6] Add rudimentary Hyper-V guest support Alexander Graf
2009-05-15  8:22 ` [PATCH 1/6] Add definition for IGNNE MSR Alexander Graf
2009-05-15  8:22   ` [PATCH 2/6] MMU: don't bail on PAT bits in PTE Alexander Graf
2009-05-15  8:22     ` [PATCH 3/6] Emulator: Inject #PF when page was not found Alexander Graf
2009-05-15  8:22       ` [PATCH 4/6] Implement Hyper-V MSRs Alexander Graf
2009-05-15  8:22         ` [PATCH 5/6] Nested SVM: Implement INVLPGA Alexander Graf
2009-05-15  8:22           ` [PATCH 6/6] Nested SVM: Improve interrupt injection Alexander Graf
2009-05-17  6:48             ` Gleb Natapov
2009-05-17  8:10               ` Alexander Graf
2009-05-18 11:47               ` Alexander Graf
2009-05-15 13:43           ` Joerg Roedel [this message]
2009-05-17 20:02             ` [PATCH 5/6] Nested SVM: Implement INVLPGA Avi Kivity
2009-05-17 20:03               ` Avi Kivity
2009-05-18 18:46                 ` Marcelo Tosatti
2009-05-18 13:00             ` Alexander Graf
2009-05-17  9:54         ` [PATCH 4/6] Implement Hyper-V MSRs Avi Kivity
2009-05-17 19:57           ` Alexander Graf
2009-05-17 20:00             ` Avi Kivity
2009-05-17 20:27               ` Alexander Graf
2009-05-17 20:37               ` Alexander Graf
2009-05-15 13:40       ` [PATCH 3/6] Emulator: Inject #PF when page was not found Joerg Roedel
2009-05-17 19:59       ` Avi Kivity
2009-05-17 20:25         ` Alexander Graf
2009-05-17 20:58           ` Avi Kivity
2009-05-18 12:55             ` Alexander Graf
2009-05-15 10:25     ` [PATCH 2/6] MMU: don't bail on PAT bits in PTE Michael S. Tsirkin
2009-05-15 10:53       ` Alexander Graf
2009-05-15 13:19         ` Joerg Roedel
2009-05-17  9:51           ` Avi Kivity
2009-05-15 10:47 ` [PATCH 0/6] Add rudimentary Hyper-V guest support Alexander Graf
2009-05-17 21:08   ` Avi Kivity
2009-05-18 12:45     ` Alexander Graf
2009-05-18 13:29       ` Avi Kivity
2009-05-18 13:35         ` Alexander Graf
2009-05-18 13:44           ` Avi Kivity
2009-05-18 15:15         ` Alexander Graf
2009-05-18 15:20           ` Avi Kivity
2009-05-18 15:24             ` Alexander Graf
2009-05-18 15:28               ` Avi Kivity
2009-05-18 15:32                 ` Alexander Graf
2009-05-18 15:35                   ` Avi Kivity

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=20090515134301.GX9835@amd.com \
    --to=joerg.roedel@amd.com \
    --cc=agraf@suse.de \
    --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