From: Will Deacon <will@kernel.org>
To: Sean Christopherson <seanjc@google.com>
Cc: Marc Zyngier <maz@kernel.org>,
kernel-team@android.com, kvm@vger.kernel.org,
Catalin Marinas <catalin.marinas@arm.com>,
Oliver Upton <oliver.upton@linux.dev>,
Andy Lutomirski <luto@amacapital.net>,
linux-arm-kernel@lists.infradead.org,
Michael Roth <michael.roth@amd.com>,
Chao Peng <chao.p.peng@linux.intel.com>,
kvmarm@lists.cs.columbia.edu
Subject: Re: [PATCH v2 00/24] KVM: arm64: Introduce pKVM shadow state at EL2
Date: Wed, 20 Jul 2022 19:48:59 +0100 [thread overview]
Message-ID: <20220720184859.GD16603@willie-the-truck> (raw)
In-Reply-To: <YtbXtI/lEnNL7fHQ@google.com>
Hi Sean,
On Tue, Jul 19, 2022 at 04:11:32PM +0000, Sean Christopherson wrote:
> Apologies for the slow reply.
No problem; you've provided a tonne of insightful feedback here, so it was
worth the wait. Thanks!
> On Fri, Jul 08, 2022, Will Deacon wrote:
> > but I wanted to inherit the broader cc list so you were aware of this
> > break-away series. Sadly, I don't think beefing up the commit messages would
> > get us to a point where somebody unfamiliar with the EL2 code already could
> > give a constructive review, but we can try to expand them a bit if you
> > genuinely think it would help.
>
> I'm not looking at it just from a review point, but also from a future readers
> perspective. E.g. someone that looks at this changelog in isolation is going to
> have no idea what a "shadow VM" is:
>
> KVM: arm64: Introduce pKVM shadow VM state at EL2
>
> Introduce a table of shadow VM structures at EL2 and provide hypercalls
> to the host for creating and destroying shadow VMs.
>
> Obviously there will be some context available in surrounding patches, but if you
> avoid the "shadow" terminology and provide a bit more context, then it yields
> something like:
>
> KVM: arm64: Add infrastructure to create and track pKVM instances at EL2
>
> Introduce a global table (and lock) to track pKVM instances at EL2, and
> provide hypercalls that can be used by the untrusted host to create and
> destroy pKVM VMs. pKVM VM/vCPU state is directly accessible only by the
> trusted hypervisor (EL2).
>
> Each pKVM VM is directly associated with an untrusted host KVM instance,
> and is referenced by the host using an opaque handle. Future patches will
> provide hypercalls to allow the host to initialize/set/get pKVM VM/vCPU
> state using the opaque handle.
Thanks, that's much better. I'll have to summon up the energy to go through
the others as well...
> > Perhaps we should s/shadow/hyp/ to make this a little clearer?
>
> Or maybe just "pkvm"?
I think the "hyp" part is useful to distinguish the pkvm code running at EL2
from the pkvm code running at EL1. For example, we have a 'pkvm' member in
'struct kvm_arch' which is used by the _host_ at EL1.
So I'd say either "pkvm_hyp" or "hyp" instead of "shadow". The latter is
nice and short...
> I think that's especially viable if you do away with
> kvm_shadow_vcpu_state. As of this series at least, kvm_shadow_vcpu_state is
> completely unnecessary. kvm_vcpu.kvm can be used to get at the VM, and thus pKVM
> state via container_of(). Then the host_vcpu can be retrieved by using the
> vcpu_idx, e.g.
>
> struct pkvm_vm *pkvm_vm = to_pkvm_vm(pkvm_vcpu->vm);
> struct kvm_vcpu *host_vcpu;
>
> host_vcpu = kvm_get_vcpu(pkvm_vm->host_vm, pkvm_vcpu->vcpu_idx);
Using container_of() here is neat; we can definitely go ahead with that
change. However, looking at this in more detail with Fuad, removing
'struct kvm_shadow_vcpu_state' entirely isn't going to work:
> E.g. I believe you can make the code look like this:
>
> struct kvm_arch {
> ...
>
> /*
> * For an unstructed host VM, pkvm_handle is used to lookup the
> * associated pKVM instance.
> */
> pvk_handle_t pkvm_handle;
> };
>
> struct pkvm_vm {
> struct kvm kvm;
>
> /* Backpointer to the host's (untrusted) KVM instance. */
> struct kvm *host_kvm;
>
> size_t donated_memory_size;
>
> struct kvm_pgtable pgt;
> };
>
> static struct kvm *pkvm_get_vm(pkvm_handle_t handle)
> {
> unsigned int idx = pkvm_handle_to_idx(handle);
>
> if (unlikely(idx >= KVM_MAX_PVMS))
> return NULL;
>
> return pkvm_vm_table[idx];
> }
>
> struct kvm_vcpu *pkvm_vcpu_load(pkvm_handle_t handle, unsigned int vcpu_idx)
> {
> struct kvm_vpcu *pkvm_vcpu = NULL;
> struct kvm *vm;
>
> hyp_spin_lock(&pkvm_global_lock);
> vm = pkvm_get_vm(handle);
> if (!vm || atomic_read(&vm->online_vcpus) <= vcpu_idx)
> goto unlock;
>
> pkvm_vcpu = kvm_get_vcpu(vm, vcpu_idx);
kvm_get_vcpu() makes use of an xarray to hold the vCPUs pointers and this is
really something which we cannot support at EL2 where, amongst other things,
we do not have support for RCU. Consequently, we do need to keep our own
mapping from the shad^H^H^H^Hhyp vCPU to the host vCPU.
We also end up expanding the 'struct kvm_shadow_vcpu_state' structure later
to track additional vCPU state in the hypervisor, for example in the
mega-series:
https://lore.kernel.org/kvmarm/20220519134204.5379-78-will@kernel.org/#Z31arch:arm64:kvm:hyp:include:nvhe:pkvm.h
Cheers,
Will
_______________________________________________
kvmarm mailing list
kvmarm@lists.cs.columbia.edu
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm
WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will@kernel.org>
To: Sean Christopherson <seanjc@google.com>
Cc: kvmarm@lists.cs.columbia.edu, Ard Biesheuvel <ardb@kernel.org>,
Alexandru Elisei <alexandru.elisei@arm.com>,
Andy Lutomirski <luto@amacapital.net>,
Catalin Marinas <catalin.marinas@arm.com>,
James Morse <james.morse@arm.com>,
Chao Peng <chao.p.peng@linux.intel.com>,
Quentin Perret <qperret@google.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Michael Roth <michael.roth@amd.com>,
Mark Rutland <mark.rutland@arm.com>,
Fuad Tabba <tabba@google.com>,
Oliver Upton <oliver.upton@linux.dev>,
Marc Zyngier <maz@kernel.org>,
kernel-team@android.com, kvm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 00/24] KVM: arm64: Introduce pKVM shadow state at EL2
Date: Wed, 20 Jul 2022 19:48:59 +0100 [thread overview]
Message-ID: <20220720184859.GD16603@willie-the-truck> (raw)
In-Reply-To: <YtbXtI/lEnNL7fHQ@google.com>
Hi Sean,
On Tue, Jul 19, 2022 at 04:11:32PM +0000, Sean Christopherson wrote:
> Apologies for the slow reply.
No problem; you've provided a tonne of insightful feedback here, so it was
worth the wait. Thanks!
> On Fri, Jul 08, 2022, Will Deacon wrote:
> > but I wanted to inherit the broader cc list so you were aware of this
> > break-away series. Sadly, I don't think beefing up the commit messages would
> > get us to a point where somebody unfamiliar with the EL2 code already could
> > give a constructive review, but we can try to expand them a bit if you
> > genuinely think it would help.
>
> I'm not looking at it just from a review point, but also from a future readers
> perspective. E.g. someone that looks at this changelog in isolation is going to
> have no idea what a "shadow VM" is:
>
> KVM: arm64: Introduce pKVM shadow VM state at EL2
>
> Introduce a table of shadow VM structures at EL2 and provide hypercalls
> to the host for creating and destroying shadow VMs.
>
> Obviously there will be some context available in surrounding patches, but if you
> avoid the "shadow" terminology and provide a bit more context, then it yields
> something like:
>
> KVM: arm64: Add infrastructure to create and track pKVM instances at EL2
>
> Introduce a global table (and lock) to track pKVM instances at EL2, and
> provide hypercalls that can be used by the untrusted host to create and
> destroy pKVM VMs. pKVM VM/vCPU state is directly accessible only by the
> trusted hypervisor (EL2).
>
> Each pKVM VM is directly associated with an untrusted host KVM instance,
> and is referenced by the host using an opaque handle. Future patches will
> provide hypercalls to allow the host to initialize/set/get pKVM VM/vCPU
> state using the opaque handle.
Thanks, that's much better. I'll have to summon up the energy to go through
the others as well...
> > Perhaps we should s/shadow/hyp/ to make this a little clearer?
>
> Or maybe just "pkvm"?
I think the "hyp" part is useful to distinguish the pkvm code running at EL2
from the pkvm code running at EL1. For example, we have a 'pkvm' member in
'struct kvm_arch' which is used by the _host_ at EL1.
So I'd say either "pkvm_hyp" or "hyp" instead of "shadow". The latter is
nice and short...
> I think that's especially viable if you do away with
> kvm_shadow_vcpu_state. As of this series at least, kvm_shadow_vcpu_state is
> completely unnecessary. kvm_vcpu.kvm can be used to get at the VM, and thus pKVM
> state via container_of(). Then the host_vcpu can be retrieved by using the
> vcpu_idx, e.g.
>
> struct pkvm_vm *pkvm_vm = to_pkvm_vm(pkvm_vcpu->vm);
> struct kvm_vcpu *host_vcpu;
>
> host_vcpu = kvm_get_vcpu(pkvm_vm->host_vm, pkvm_vcpu->vcpu_idx);
Using container_of() here is neat; we can definitely go ahead with that
change. However, looking at this in more detail with Fuad, removing
'struct kvm_shadow_vcpu_state' entirely isn't going to work:
> E.g. I believe you can make the code look like this:
>
> struct kvm_arch {
> ...
>
> /*
> * For an unstructed host VM, pkvm_handle is used to lookup the
> * associated pKVM instance.
> */
> pvk_handle_t pkvm_handle;
> };
>
> struct pkvm_vm {
> struct kvm kvm;
>
> /* Backpointer to the host's (untrusted) KVM instance. */
> struct kvm *host_kvm;
>
> size_t donated_memory_size;
>
> struct kvm_pgtable pgt;
> };
>
> static struct kvm *pkvm_get_vm(pkvm_handle_t handle)
> {
> unsigned int idx = pkvm_handle_to_idx(handle);
>
> if (unlikely(idx >= KVM_MAX_PVMS))
> return NULL;
>
> return pkvm_vm_table[idx];
> }
>
> struct kvm_vcpu *pkvm_vcpu_load(pkvm_handle_t handle, unsigned int vcpu_idx)
> {
> struct kvm_vpcu *pkvm_vcpu = NULL;
> struct kvm *vm;
>
> hyp_spin_lock(&pkvm_global_lock);
> vm = pkvm_get_vm(handle);
> if (!vm || atomic_read(&vm->online_vcpus) <= vcpu_idx)
> goto unlock;
>
> pkvm_vcpu = kvm_get_vcpu(vm, vcpu_idx);
kvm_get_vcpu() makes use of an xarray to hold the vCPUs pointers and this is
really something which we cannot support at EL2 where, amongst other things,
we do not have support for RCU. Consequently, we do need to keep our own
mapping from the shad^H^H^H^Hhyp vCPU to the host vCPU.
We also end up expanding the 'struct kvm_shadow_vcpu_state' structure later
to track additional vCPU state in the hypervisor, for example in the
mega-series:
https://lore.kernel.org/kvmarm/20220519134204.5379-78-will@kernel.org/#Z31arch:arm64:kvm:hyp:include:nvhe:pkvm.h
Cheers,
Will
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will@kernel.org>
To: Sean Christopherson <seanjc@google.com>
Cc: kvmarm@lists.cs.columbia.edu, Ard Biesheuvel <ardb@kernel.org>,
Alexandru Elisei <alexandru.elisei@arm.com>,
Andy Lutomirski <luto@amacapital.net>,
Catalin Marinas <catalin.marinas@arm.com>,
James Morse <james.morse@arm.com>,
Chao Peng <chao.p.peng@linux.intel.com>,
Quentin Perret <qperret@google.com>,
Suzuki K Poulose <suzuki.poulose@arm.com>,
Michael Roth <michael.roth@amd.com>,
Mark Rutland <mark.rutland@arm.com>,
Fuad Tabba <tabba@google.com>,
Oliver Upton <oliver.upton@linux.dev>,
Marc Zyngier <maz@kernel.org>,
kernel-team@android.com, kvm@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 00/24] KVM: arm64: Introduce pKVM shadow state at EL2
Date: Wed, 20 Jul 2022 19:48:59 +0100 [thread overview]
Message-ID: <20220720184859.GD16603@willie-the-truck> (raw)
In-Reply-To: <YtbXtI/lEnNL7fHQ@google.com>
Hi Sean,
On Tue, Jul 19, 2022 at 04:11:32PM +0000, Sean Christopherson wrote:
> Apologies for the slow reply.
No problem; you've provided a tonne of insightful feedback here, so it was
worth the wait. Thanks!
> On Fri, Jul 08, 2022, Will Deacon wrote:
> > but I wanted to inherit the broader cc list so you were aware of this
> > break-away series. Sadly, I don't think beefing up the commit messages would
> > get us to a point where somebody unfamiliar with the EL2 code already could
> > give a constructive review, but we can try to expand them a bit if you
> > genuinely think it would help.
>
> I'm not looking at it just from a review point, but also from a future readers
> perspective. E.g. someone that looks at this changelog in isolation is going to
> have no idea what a "shadow VM" is:
>
> KVM: arm64: Introduce pKVM shadow VM state at EL2
>
> Introduce a table of shadow VM structures at EL2 and provide hypercalls
> to the host for creating and destroying shadow VMs.
>
> Obviously there will be some context available in surrounding patches, but if you
> avoid the "shadow" terminology and provide a bit more context, then it yields
> something like:
>
> KVM: arm64: Add infrastructure to create and track pKVM instances at EL2
>
> Introduce a global table (and lock) to track pKVM instances at EL2, and
> provide hypercalls that can be used by the untrusted host to create and
> destroy pKVM VMs. pKVM VM/vCPU state is directly accessible only by the
> trusted hypervisor (EL2).
>
> Each pKVM VM is directly associated with an untrusted host KVM instance,
> and is referenced by the host using an opaque handle. Future patches will
> provide hypercalls to allow the host to initialize/set/get pKVM VM/vCPU
> state using the opaque handle.
Thanks, that's much better. I'll have to summon up the energy to go through
the others as well...
> > Perhaps we should s/shadow/hyp/ to make this a little clearer?
>
> Or maybe just "pkvm"?
I think the "hyp" part is useful to distinguish the pkvm code running at EL2
from the pkvm code running at EL1. For example, we have a 'pkvm' member in
'struct kvm_arch' which is used by the _host_ at EL1.
So I'd say either "pkvm_hyp" or "hyp" instead of "shadow". The latter is
nice and short...
> I think that's especially viable if you do away with
> kvm_shadow_vcpu_state. As of this series at least, kvm_shadow_vcpu_state is
> completely unnecessary. kvm_vcpu.kvm can be used to get at the VM, and thus pKVM
> state via container_of(). Then the host_vcpu can be retrieved by using the
> vcpu_idx, e.g.
>
> struct pkvm_vm *pkvm_vm = to_pkvm_vm(pkvm_vcpu->vm);
> struct kvm_vcpu *host_vcpu;
>
> host_vcpu = kvm_get_vcpu(pkvm_vm->host_vm, pkvm_vcpu->vcpu_idx);
Using container_of() here is neat; we can definitely go ahead with that
change. However, looking at this in more detail with Fuad, removing
'struct kvm_shadow_vcpu_state' entirely isn't going to work:
> E.g. I believe you can make the code look like this:
>
> struct kvm_arch {
> ...
>
> /*
> * For an unstructed host VM, pkvm_handle is used to lookup the
> * associated pKVM instance.
> */
> pvk_handle_t pkvm_handle;
> };
>
> struct pkvm_vm {
> struct kvm kvm;
>
> /* Backpointer to the host's (untrusted) KVM instance. */
> struct kvm *host_kvm;
>
> size_t donated_memory_size;
>
> struct kvm_pgtable pgt;
> };
>
> static struct kvm *pkvm_get_vm(pkvm_handle_t handle)
> {
> unsigned int idx = pkvm_handle_to_idx(handle);
>
> if (unlikely(idx >= KVM_MAX_PVMS))
> return NULL;
>
> return pkvm_vm_table[idx];
> }
>
> struct kvm_vcpu *pkvm_vcpu_load(pkvm_handle_t handle, unsigned int vcpu_idx)
> {
> struct kvm_vpcu *pkvm_vcpu = NULL;
> struct kvm *vm;
>
> hyp_spin_lock(&pkvm_global_lock);
> vm = pkvm_get_vm(handle);
> if (!vm || atomic_read(&vm->online_vcpus) <= vcpu_idx)
> goto unlock;
>
> pkvm_vcpu = kvm_get_vcpu(vm, vcpu_idx);
kvm_get_vcpu() makes use of an xarray to hold the vCPUs pointers and this is
really something which we cannot support at EL2 where, amongst other things,
we do not have support for RCU. Consequently, we do need to keep our own
mapping from the shad^H^H^H^Hhyp vCPU to the host vCPU.
We also end up expanding the 'struct kvm_shadow_vcpu_state' structure later
to track additional vCPU state in the hypervisor, for example in the
mega-series:
https://lore.kernel.org/kvmarm/20220519134204.5379-78-will@kernel.org/#Z31arch:arm64:kvm:hyp:include:nvhe:pkvm.h
Cheers,
Will
next prev parent reply other threads:[~2022-07-20 18:49 UTC|newest]
Thread overview: 135+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-30 13:57 [PATCH v2 00/24] KVM: arm64: Introduce pKVM shadow state at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 01/24] KVM: arm64: Move hyp refcount manipulation helpers Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 02/24] KVM: arm64: Allow non-coalescable pages in a hyp_pool Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 03/24] KVM: arm64: Add flags to struct hyp_page Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-18 10:54 ` Vincent Donnefort
2022-07-18 10:54 ` Vincent Donnefort
2022-07-18 10:54 ` Vincent Donnefort
2022-07-18 10:57 ` Vincent Donnefort
2022-07-18 10:57 ` Vincent Donnefort
2022-07-18 10:57 ` Vincent Donnefort
2022-06-30 13:57 ` [PATCH v2 04/24] KVM: arm64: Back hyp_vmemmap for all of memory Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 05/24] KVM: arm64: Make hyp stage-1 refcnt correct on the whole range Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 06/24] KVM: arm64: Unify identifiers used to distinguish host and hypervisor Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-20 15:11 ` Oliver Upton
2022-07-20 15:11 ` Oliver Upton
2022-07-20 15:11 ` Oliver Upton
2022-07-20 18:14 ` Will Deacon
2022-07-20 18:14 ` Will Deacon
2022-07-20 18:14 ` Will Deacon
2022-07-29 19:28 ` Oliver Upton
2022-07-29 19:28 ` Oliver Upton
2022-07-29 19:28 ` Oliver Upton
2022-06-30 13:57 ` [PATCH v2 07/24] KVM: arm64: Implement do_donate() helper for donating memory Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 08/24] KVM: arm64: Prevent the donation of no-map pages Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 09/24] KVM: arm64: Add helpers to pin memory shared with hyp Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 10/24] KVM: arm64: Include asm/kvm_mmu.h in nvhe/mem_protect.h Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 11/24] KVM: arm64: Add hyp_spinlock_t static initializer Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 12/24] KVM: arm64: Introduce shadow VM state at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-18 18:40 ` Vincent Donnefort
2022-07-18 18:40 ` Vincent Donnefort
2022-07-18 18:40 ` Vincent Donnefort
2022-07-19 9:41 ` Marc Zyngier
2022-07-19 9:41 ` Marc Zyngier
2022-07-19 9:41 ` Marc Zyngier
2022-07-20 18:20 ` Will Deacon
2022-07-20 18:20 ` Will Deacon
2022-07-20 18:20 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 13/24] KVM: arm64: Instantiate VM shadow data from EL1 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 14/24] KVM: arm64: Add pcpu fixmap infrastructure at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-19 13:30 ` Vincent Donnefort
2022-07-19 13:30 ` Vincent Donnefort
2022-07-19 13:30 ` Vincent Donnefort
2022-07-19 14:09 ` Quentin Perret
2022-07-19 14:09 ` Quentin Perret
2022-07-19 14:09 ` Quentin Perret
2022-07-19 14:10 ` Quentin Perret
2022-07-19 14:10 ` Quentin Perret
2022-07-19 14:10 ` Quentin Perret
2022-06-30 13:57 ` [PATCH v2 15/24] KVM: arm64: Initialise hyp symbols regardless of pKVM Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 16/24] KVM: arm64: Provide I-cache invalidation by VA at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 17/24] KVM: arm64: Add generic hyp_memcache helpers Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 18/24] KVM: arm64: Instantiate guest stage-2 page-tables at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-19 13:32 ` Vincent Donnefort
2022-07-19 13:32 ` Vincent Donnefort
2022-07-19 13:32 ` Vincent Donnefort
2022-07-20 18:26 ` Will Deacon
2022-07-20 18:26 ` Will Deacon
2022-07-20 18:26 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 19/24] KVM: arm64: Return guest memory from EL2 via dedicated teardown memcache Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 20/24] KVM: arm64: Unmap kvm_arm_hyp_percpu_base from the host Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 21/24] KVM: arm64: Maintain a copy of 'kvm_arm_vmid_bits' at EL2 Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 22/24] KVM: arm64: Explicitly map kvm_vgic_global_state " Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [PATCH v2 23/24] KVM: arm64: Don't map host sections in pkvm Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` [RFC PATCH v2 24/24] KVM: arm64: Use the shadow vCPU structure in handle___kvm_vcpu_run() Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-06-30 13:57 ` Will Deacon
2022-07-06 19:17 ` [PATCH v2 00/24] KVM: arm64: Introduce pKVM shadow state at EL2 Sean Christopherson
2022-07-06 19:17 ` Sean Christopherson
2022-07-06 19:17 ` Sean Christopherson
2022-07-08 16:23 ` Will Deacon
2022-07-08 16:23 ` Will Deacon
2022-07-08 16:23 ` Will Deacon
2022-07-19 16:11 ` Sean Christopherson
2022-07-19 16:11 ` Sean Christopherson
2022-07-19 16:11 ` Sean Christopherson
2022-07-20 9:25 ` Marc Zyngier
2022-07-20 9:25 ` Marc Zyngier
2022-07-20 9:25 ` Marc Zyngier
2022-07-20 18:48 ` Will Deacon [this message]
2022-07-20 18:48 ` Will Deacon
2022-07-20 18:48 ` Will Deacon
2022-07-20 21:17 ` Sean Christopherson
2022-07-20 21:17 ` Sean Christopherson
2022-07-20 21:17 ` Sean Christopherson
2022-07-19 14:24 ` Vincent Donnefort
2022-07-19 14:24 ` Vincent Donnefort
2022-07-19 14:24 ` Vincent Donnefort
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=20220720184859.GD16603@willie-the-truck \
--to=will@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=chao.p.peng@linux.intel.com \
--cc=kernel-team@android.com \
--cc=kvm@vger.kernel.org \
--cc=kvmarm@lists.cs.columbia.edu \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=luto@amacapital.net \
--cc=maz@kernel.org \
--cc=michael.roth@amd.com \
--cc=oliver.upton@linux.dev \
--cc=seanjc@google.com \
/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.