0c76f22ef1
- bnc#633573 - System fail to boot after running several warm reboot tests 22749-vtd-workarounds.patch - Upstream patches from Jan 22744-ept-pod-locking.patch 22777-vtd-ats-fixes.patch 22781-pod-hap-logdirty.patch 22782-x86-emul-smsw.patch 22789-i386-no-x2apic.patch 22790-svm-resume-migrate-pirqs.patch 22816-x86-pirq-drop-priv-check.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=94
25 lines
828 B
Diff
25 lines
828 B
Diff
# HG changeset patch
|
|
# User Keir Fraser <keir@xen.org>
|
|
# Date 1295625605 0
|
|
# Node ID 43592043cefc8357e6e6a0ab9ba85ca480968cb1
|
|
# Parent 9bd5f65050f8014de7d0fcf9d89ed8c441f261fa
|
|
svm: migrate pirq with vcpu
|
|
|
|
hvm_migrate_pirqs() is missing in svm_do_resume().
|
|
|
|
Signed-off-by: Wei Wang <wei.wang2@amd.com>
|
|
|
|
Index: xen-4.0.2-testing/xen/arch/x86/hvm/svm/svm.c
|
|
===================================================================
|
|
--- xen-4.0.2-testing.orig/xen/arch/x86/hvm/svm/svm.c
|
|
+++ xen-4.0.2-testing/xen/arch/x86/hvm/svm/svm.c
|
|
@@ -704,7 +704,7 @@ static void svm_do_resume(struct vcpu *v
|
|
{
|
|
v->arch.hvm_svm.launch_core = smp_processor_id();
|
|
hvm_migrate_timers(v);
|
|
-
|
|
+ hvm_migrate_pirqs(v);
|
|
/* Migrating to another ASID domain. Request a new ASID. */
|
|
hvm_asid_flush_vcpu(v);
|
|
}
|