From: Andrew Cooper Date: Fri, 2 Nov 2018 17:46:38 +0000 (+0000) Subject: x86/vcpu: Remove struct vcpu allocation restriction when possible X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f2722ea0230dca796f63148d8ed3313f1dbcbe8b;p=people%2Fdariof%2Fxen.git x86/vcpu: Remove struct vcpu allocation restriction when possible There is no need for struct vcpu to live below the 4G boundary for PV guests, or for HVM vcpus using HAP. Plumb struct domain into alloc_vcpu_struct() so the x86 version can query the domain's type and paging settings. Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich Reviewed-by: Wei Liu Acked-by: Julien Grall --- diff --git a/xen/arch/arm/domain.c b/xen/arch/arm/domain.c index feebbf5a92..80432872d6 100644 --- a/xen/arch/arm/domain.c +++ b/xen/arch/arm/domain.c @@ -516,7 +516,7 @@ void dump_pageframe_info(struct domain *d) #define MAX_PAGES_PER_VCPU 1 #endif -struct vcpu *alloc_vcpu_struct(void) +struct vcpu *alloc_vcpu_struct(const struct domain *d) { struct vcpu *v; diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index 943f95b676..f6fe954313 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -302,7 +302,7 @@ void free_domain_struct(struct domain *d) free_xenheap_page(d); } -struct vcpu *alloc_vcpu_struct(void) +struct vcpu *alloc_vcpu_struct(const struct domain *d) { struct vcpu *v; /* @@ -311,8 +311,11 @@ struct vcpu *alloc_vcpu_struct(void) * may require that the shadow CR3 points below 4GB, and hence the whole * structure must satisfy this restriction. Thus we specify MEMF_bits(32). */ + unsigned int memflags = + (is_hvm_domain(d) && paging_mode_shadow(d)) ? MEMF_bits(32) : 0; + BUILD_BUG_ON(sizeof(*v) > PAGE_SIZE); - v = alloc_xenheap_pages(0, MEMF_bits(32)); + v = alloc_xenheap_pages(0, memflags); if ( v != NULL ) clear_page(v); return v; diff --git a/xen/common/domain.c b/xen/common/domain.c index b8d4848970..d6650f0656 100644 --- a/xen/common/domain.c +++ b/xen/common/domain.c @@ -140,7 +140,7 @@ struct vcpu *vcpu_create( BUG_ON((!is_idle_domain(d) || vcpu_id) && d->vcpu[vcpu_id]); - if ( (v = alloc_vcpu_struct()) == NULL ) + if ( (v = alloc_vcpu_struct(d)) == NULL ) return NULL; v->domain = d; diff --git a/xen/include/xen/domain.h b/xen/include/xen/domain.h index 5e393fd7f2..33e41486cb 100644 --- a/xen/include/xen/domain.h +++ b/xen/include/xen/domain.h @@ -36,7 +36,7 @@ struct domain *alloc_domain_struct(void); void free_domain_struct(struct domain *d); /* Allocate/free a VCPU structure. */ -struct vcpu *alloc_vcpu_struct(void); +struct vcpu *alloc_vcpu_struct(const struct domain *d); void free_vcpu_struct(struct vcpu *v); /* Allocate/free a PIRQ structure. */