aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Campbell <ian.campbell@citrix.com>2009-12-01 06:47:15 -0500
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-12-03 14:14:56 -0500
commitb4606f2165153833247823e8c04c5e88cb3d298b (patch)
treeccbfa5eec0ea6c39f34de45ee1f0665288d6c1f1
parent65f63384b391bf4d384327d8a7c6de9860290b5c (diff)
xen: explicitly create/destroy stop_machine workqueues outside suspend/resume region.
I have observed cases where the implicit stop_machine_destroy() done by stop_machine() hangs while destroying the workqueues, specifically in kthread_stop(). This seems to be because timer ticks are not restarted until after stop_machine() returns. Fortunately stop_machine provides a facility to pre-create/post-destroy the workqueues so use this to ensure that workqueues are only destroyed after everything is really up and running again. I only actually observed this failure with 2.6.30. It seems that newer kernels are somehow more robust against doing kthread_stop() without timer interrupts (I tried some backports of some likely looking candidates but did not track down the commit which added this robustness). However this change seems like a reasonable belt&braces thing to do. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> Cc: Stable Kernel <stable@kernel.org>
-rw-r--r--drivers/xen/manage.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/drivers/xen/manage.c b/drivers/xen/manage.c
index 2fb7d39b814c..c4997930afc7 100644
--- a/drivers/xen/manage.c
+++ b/drivers/xen/manage.c
@@ -79,6 +79,12 @@ static void do_suspend(void)
79 79
80 shutting_down = SHUTDOWN_SUSPEND; 80 shutting_down = SHUTDOWN_SUSPEND;
81 81
82 err = stop_machine_create();
83 if (err) {
84 printk(KERN_ERR "xen suspend: failed to setup stop_machine %d\n", err);
85 goto out;
86 }
87
82#ifdef CONFIG_PREEMPT 88#ifdef CONFIG_PREEMPT
83 /* If the kernel is preemptible, we need to freeze all the processes 89 /* If the kernel is preemptible, we need to freeze all the processes
84 to prevent them from being in the middle of a pagetable update 90 to prevent them from being in the middle of a pagetable update
@@ -86,7 +92,7 @@ static void do_suspend(void)
86 err = freeze_processes(); 92 err = freeze_processes();
87 if (err) { 93 if (err) {
88 printk(KERN_ERR "xen suspend: freeze failed %d\n", err); 94 printk(KERN_ERR "xen suspend: freeze failed %d\n", err);
89 goto out; 95 goto out_destroy_sm;
90 } 96 }
91#endif 97#endif
92 98
@@ -129,7 +135,11 @@ out_resume:
129out_thaw: 135out_thaw:
130#ifdef CONFIG_PREEMPT 136#ifdef CONFIG_PREEMPT
131 thaw_processes(); 137 thaw_processes();
138
139out_destroy_sm:
132#endif 140#endif
141 stop_machine_destroy();
142
133out: 143out:
134 shutting_down = SHUTDOWN_INVALID; 144 shutting_down = SHUTDOWN_INVALID;
135} 145}