qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] cpus: ignore ESRCH in qemu_cpu_kick_thread()
@ 2019-01-02 14:16 Laurent Vivier
  2019-01-02 14:28 ` Philippe Mathieu-Daudé
  2019-01-07 23:02 ` Paolo Bonzini
  0 siblings, 2 replies; 7+ messages in thread
From: Laurent Vivier @ 2019-01-02 14:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Paolo Bonzini, Richard Henderson, Peter Crosthwaite

We can have a race condition between qemu_cpu_kick_thread() and
qemu_kvm_cpu_thread_fn() when we hotunplug a CPU. In this case,
qemu_cpu_kick_thread() can try to kick a thread that is exiting.
pthread_kill() returns an error and qemu is stopped by an exit(1).

   qemu:qemu_cpu_kick_thread: No such process

We can ignore safely this error.

Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
 cpus.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpus.c b/cpus.c
index 0ddeeefc14..4717490bd0 100644
--- a/cpus.c
+++ b/cpus.c
@@ -1778,7 +1778,7 @@ static void qemu_cpu_kick_thread(CPUState *cpu)
     }
     cpu->thread_kicked = true;
     err = pthread_kill(cpu->thread->thread, SIG_IPI);
-    if (err) {
+    if (err && err != ESRCH) {
         fprintf(stderr, "qemu:%s: %s", __func__, strerror(err));
         exit(1);
     }
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-01-15 19:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-01-02 14:16 [Qemu-devel] [PATCH] cpus: ignore ESRCH in qemu_cpu_kick_thread() Laurent Vivier
2019-01-02 14:28 ` Philippe Mathieu-Daudé
2019-01-07 23:02 ` Paolo Bonzini
2019-01-08 18:47   ` Laurent Vivier
2019-01-15 16:34     ` Laurent Vivier
2019-01-15 18:11       ` Paolo Bonzini
2019-01-15 19:59   ` Emilio G. Cota

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).