qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Ping][PATCH v0] vl: flush all task from rcu queue before exiting


From: Denis Plotnikov
Subject: [Ping][PATCH v0] vl: flush all task from rcu queue before exiting
Date: Tue, 9 Nov 2021 10:23:47 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0

Ping ping!

On 02.11.2021 16:39, Denis Plotnikov wrote:
The device destruction may superimpose over qemu shutdown.
In this case some management layer, requested a device unplug and
waiting for DEVICE_DELETED event, may never get this event.

This happens because device_finalize() may never be called on qemu shutdown
for some devices using address_space_destroy(). The later is called from
the rcu thread.
On qemu shutdown, not all rcu callbacks may be called because the rcu thread
may not have enough time to converge before qemu main thread exit.

To resolve this issue this patch makes rcu thread to finish all its callbacks
explicitly by calling a new rcu intreface function right before
qemu main thread exit.

Signed-off-by: Denis Plotnikov <den-plotnikov@yandex-team.ru>
---
  include/qemu/rcu.h |  1 +
  softmmu/runstate.c |  3 +++
  util/rcu.c         | 12 ++++++++++++
  3 files changed, 16 insertions(+)

diff --git a/include/qemu/rcu.h b/include/qemu/rcu.h
index 515d327cf11c..f7fbdc3781e5 100644
--- a/include/qemu/rcu.h
+++ b/include/qemu/rcu.h
@@ -134,6 +134,7 @@ struct rcu_head {
extern void call_rcu1(struct rcu_head *head, RCUCBFunc *func);
  extern void drain_call_rcu(void);
+extern void flush_rcu(void);
/* The operands of the minus operator must have the same type,
   * which must be the one that we specify in the cast.
diff --git a/softmmu/runstate.c b/softmmu/runstate.c
index 10d9b7365aa7..28f319a97a2b 100644
--- a/softmmu/runstate.c
+++ b/softmmu/runstate.c
@@ -822,5 +822,8 @@ void qemu_cleanup(void)
      monitor_cleanup();
      qemu_chr_cleanup();
      user_creatable_cleanup();
+
+    /* finish all the tasks from rcu queue before exiting */
+    flush_rcu();
      /* TODO: unref root container, check all devices are ok */
  }
diff --git a/util/rcu.c b/util/rcu.c
index 13ac0f75cb2a..f047f8ee8d16 100644
--- a/util/rcu.c
+++ b/util/rcu.c
@@ -348,6 +348,18 @@ void drain_call_rcu(void)
} +/*
+ * This function drains rcu queue until there are no tasks to do left
+ * and aims to the cases when one needs to ensure that no work hang
+ * in rcu thread before proceeding, e.g. on qemu shutdown.
+ */
+void flush_rcu(void)
+{
+    while (qatomic_read(&rcu_call_count) > 0) {
+        drain_call_rcu();
+    }
+}
+
  void rcu_register_thread(void)
  {
      assert(rcu_reader.ctr == 0);



reply via email to

[Prev in Thread] Current Thread [Next in Thread]