On Tue, Oct 23, 2018 at 05:13:40PM -0400, Marc Orr wrote: > Adding everyone that's cc'd on [kvm PATCH 1/2] mm: export > __vmalloc_node_range(). > Thanks, > Marc > On Sat, Oct 20, 2018 at 5:13 PM Marc Orr <marcorr@xxxxxxxxxx> wrote: > > > > Previously, vcpus were allocated through the kmem_cache_zalloc() API, > > which requires the underlying physical memory to be contiguous. > > Because the x86 vcpu struct, struct vcpu_vmx, is relatively large > > (e.g., currently 47680 bytes on my setup), it can become hard to find > > contiguous memory. > > > > At the same time, the comments in the code indicate that the primary > > reason for using the kmem_cache_zalloc() API is to align the memory > > rather than to provide physical contiguity. > > > > Thus, this patch updates the vcpu allocation logic for vmx to use the > > vmalloc() API. > > > > Signed-off-by: Marc Orr <marcorr@xxxxxxxxxx> > > --- > > arch/x86/kvm/vmx.c | 98 +++++++++++++++++++++++++++++++++++++++++---- > > virt/kvm/kvm_main.c | 28 +++++++------ > > 2 files changed, 106 insertions(+), 20 deletions(-) > > > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c > > index abeeb45d1c33..d480a2cc0667 100644 > > --- a/arch/x86/kvm/vmx.c > > +++ b/arch/x86/kvm/vmx.c > > @@ -898,7 +898,14 @@ struct nested_vmx { > > #define POSTED_INTR_ON 0 > > #define POSTED_INTR_SN 1 > > > > -/* Posted-Interrupt Descriptor */ > > +/* > > + * Posted-Interrupt Descriptor > > + * > > + * Note, the physical address of this structure is used by VMX. Furthermore, the > > + * translation code assumes that the entire pi_desc struct resides within a > > + * single page, which will be true because the struct is 64 bytes and 64-byte > > + * aligned. > > + */ > > struct pi_desc { > > u32 pir[8]; /* Posted interrupt requested */ > > union { > > @@ -970,8 +977,25 @@ static inline int pi_test_sn(struct pi_desc *pi_desc) > > > > struct vmx_msrs { > > unsigned int nr; > > - struct vmx_msr_entry val[NR_AUTOLOAD_MSRS]; > > + struct vmx_msr_entry *val; > > }; > > +struct kmem_cache *vmx_msr_entry_cache; The vmx_msr_entry changes should be done as a separate prereq patch, e.g. for bisecting and/or revert in case there is a bug. AFAICT they don't depend on moving to vmalloc.