Displaying 1 result from an estimated 1 matches for "74cd371".
Did you mean:
746371
2013 Mar 27
2
[PATCH] x86/S3: Restore broken vcpu affinity on resume (v3)
...| 4 ++++
xen/common/domain.c | 2 ++
xen/common/schedule.c | 41 ++++++++++++++++++++++++++++++++++++++++-
xen/include/xen/sched.h | 6 ++++++
4 files changed, 52 insertions(+), 1 deletion(-)
diff --git a/xen/arch/x86/acpi/power.c b/xen/arch/x86/acpi/power.c
index 3c2585c..74cd371 100644
--- a/xen/arch/x86/acpi/power.c
+++ b/xen/arch/x86/acpi/power.c
@@ -96,7 +96,11 @@ static void thaw_domains(void)
rcu_read_lock(&domlist_read_lock);
for_each_domain ( d )
+ {
+ if (system_state == SYS_STATE_resume)
+ restore_vcpu_affinity(d);
dom...