# HG changeset patch
# User Keir Fraser <keir.fraser@xxxxxxxxxx>
# Date 1250682883 -3600
# Node ID 2681155bcb8b724184a32f7365a8a6264fb1e09a
# Parent d33e9aae74c65494c02cc04c3a44c5958c577936
x86: Only allocate vpid for initialised vcpus.
Currently, 32 vpids are allocated for each
domain statically, it blocks to support more
vcpus for HVM domain, so remove the limit and
only allocate vpid for intilized vcpus. In this
way, vpid can be non-contiguous for vcpus of one
single domain.
Signed-off-by: Xiantao Zhang <xiantao.zhang@xxxxxxxxx>
---
xen/arch/x86/hvm/vmx/vmcs.c | 4 ----
xen/arch/x86/hvm/vmx/vmx.c | 31 +++++++++++++++----------------
xen/include/asm-x86/hvm/vmx/vmcs.h | 1 -
3 files changed, 15 insertions(+), 21 deletions(-)
diff -r d33e9aae74c6 -r 2681155bcb8b xen/arch/x86/hvm/vmx/vmcs.c
--- a/xen/arch/x86/hvm/vmx/vmcs.c Wed Aug 19 12:53:46 2009 +0100
+++ b/xen/arch/x86/hvm/vmx/vmcs.c Wed Aug 19 12:54:43 2009 +0100
@@ -732,11 +732,7 @@ static int construct_vmcs(struct vcpu *v
}
if ( cpu_has_vmx_vpid )
- {
- v->arch.hvm_vmx.vpid =
- v->domain->arch.hvm_domain.vmx.vpid_base + v->vcpu_id;
__vmwrite(VIRTUAL_PROCESSOR_ID, v->arch.hvm_vmx.vpid);
- }
if ( cpu_has_vmx_pat && paging_mode_hap(d) )
{
diff -r d33e9aae74c6 -r 2681155bcb8b xen/arch/x86/hvm/vmx/vmx.c
--- a/xen/arch/x86/hvm/vmx/vmx.c Wed Aug 19 12:53:46 2009 +0100
+++ b/xen/arch/x86/hvm/vmx/vmx.c Wed Aug 19 12:54:43 2009 +0100
@@ -59,8 +59,8 @@ static void vmx_ctxt_switch_to(struct vc
static int vmx_alloc_vlapic_mapping(struct domain *d);
static void vmx_free_vlapic_mapping(struct domain *d);
-static int vmx_alloc_vpid(struct domain *d);
-static void vmx_free_vpid(struct domain *d);
+static int vmx_alloc_vpid(struct vcpu *v);
+static void vmx_free_vpid(struct vcpu *v);
static void vmx_install_vlapic_mapping(struct vcpu *v);
static void vmx_update_guest_cr(struct vcpu *v, unsigned int cr);
static void vmx_update_guest_efer(struct vcpu *v);
@@ -82,14 +82,9 @@ static int vmx_domain_initialise(struct
d->arch.hvm_domain.vmx.ept_control.asr =
pagetable_get_pfn(d->arch.phys_table);
- if ( (rc = vmx_alloc_vpid(d)) != 0 )
+
+ if ( (rc = vmx_alloc_vlapic_mapping(d)) != 0 )
return rc;
-
- if ( (rc = vmx_alloc_vlapic_mapping(d)) != 0 )
- {
- vmx_free_vpid(d);
- return rc;
- }
return 0;
}
@@ -98,7 +93,6 @@ static void vmx_domain_destroy(struct do
{
ept_sync_domain(d);
vmx_free_vlapic_mapping(d);
- vmx_free_vpid(d);
}
static int vmx_vcpu_initialise(struct vcpu *v)
@@ -106,6 +100,9 @@ static int vmx_vcpu_initialise(struct vc
int rc;
spin_lock_init(&v->arch.hvm_vmx.vmcs_lock);
+
+ if ( (rc = vmx_alloc_vpid(v)) != 0 )
+ return rc;
v->arch.schedule_tail = vmx_do_resume;
v->arch.ctxt_switch_from = vmx_ctxt_switch_from;
@@ -116,6 +113,7 @@ static int vmx_vcpu_initialise(struct vc
dprintk(XENLOG_WARNING,
"Failed to create VMCS for vcpu %d: err=%d.\n",
v->vcpu_id, rc);
+ vmx_free_vpid(v);
return rc;
}
@@ -135,6 +133,7 @@ static void vmx_vcpu_destroy(struct vcpu
vmx_destroy_vmcs(v);
vpmu_destroy(v);
passive_domain_destroy(v);
+ vmx_free_vpid(v);
}
#ifdef __x86_64__
@@ -1396,7 +1395,7 @@ static struct hvm_function_table vmx_fun
};
static unsigned long *vpid_bitmap;
-#define VPID_BITMAP_SIZE ((1u << VMCS_VPID_WIDTH) / XEN_LEGACY_MAX_VCPUS)
+#define VPID_BITMAP_SIZE (1u << VMCS_VPID_WIDTH)
void start_vmx(void)
{
@@ -1902,7 +1901,7 @@ static void vmx_free_vlapic_mapping(stru
free_xenheap_page(mfn_to_virt(mfn));
}
-static int vmx_alloc_vpid(struct domain *d)
+static int vmx_alloc_vpid(struct vcpu *v)
{
int idx;
@@ -1919,17 +1918,17 @@ static int vmx_alloc_vpid(struct domain
}
while ( test_and_set_bit(idx, vpid_bitmap) );
- d->arch.hvm_domain.vmx.vpid_base = idx * XEN_LEGACY_MAX_VCPUS;
+ v->arch.hvm_vmx.vpid = idx;
return 0;
}
-static void vmx_free_vpid(struct domain *d)
+static void vmx_free_vpid(struct vcpu *v)
{
if ( !cpu_has_vmx_vpid )
return;
- clear_bit(d->arch.hvm_domain.vmx.vpid_base / XEN_LEGACY_MAX_VCPUS,
- vpid_bitmap);
+ if ( v->arch.hvm_vmx.vpid )
+ clear_bit(v->arch.hvm_vmx.vpid, vpid_bitmap);
}
static void vmx_install_vlapic_mapping(struct vcpu *v)
diff -r d33e9aae74c6 -r 2681155bcb8b xen/include/asm-x86/hvm/vmx/vmcs.h
--- a/xen/include/asm-x86/hvm/vmx/vmcs.h Wed Aug 19 12:53:46 2009 +0100
+++ b/xen/include/asm-x86/hvm/vmx/vmcs.h Wed Aug 19 12:54:43 2009 +0100
@@ -58,7 +58,6 @@ struct vmx_msr_state {
struct vmx_domain {
unsigned long apic_access_mfn;
- unsigned long vpid_base;
union {
struct {
u64 etmt :3,
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|