qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: Peter Xu <peterx@redhat.com>
Subject: [Qemu-devel] [PULL 3/7] monitor: more comments on lock-free elements
Date: Mon, 18 Jun 2018 16:08:50 +0200	[thread overview]
Message-ID: <20180618140854.17824-4-armbru@redhat.com> (raw)
In-Reply-To: <20180618140854.17824-1-armbru@redhat.com>

From: Peter Xu <peterx@redhat.com>

Add some explicit comments for both Readline and cpu_set/cpu_get helpers
that they do not need the mon_lock protection.

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <20180608035511.7439-4-peterx@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 monitor.c | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/monitor.c b/monitor.c
index 0fba3ccc20..5c60bf08cc 100644
--- a/monitor.c
+++ b/monitor.c
@@ -206,7 +206,15 @@ struct Monitor {
     int suspend_cnt;            /* Needs to be accessed atomically */
     bool skip_flush;
     bool use_io_thr;
+
+    /*
+     * State used only in the thread "owning" the monitor.
+     * If @use_io_thr, this is mon_global.mon_iothread.
+     * Else, it's the main thread.
+     * These members can be safely accessed without locks.
+     */
     ReadLineState *rs;
+
     MonitorQMP qmp;
     gchar *mon_cpu_path;
     BlockCompletionFunc *password_completion_cb;
@@ -1311,7 +1319,7 @@ void qmp_qmp_capabilities(bool has_enable, QMPCapabilityList *enable,
     cur_mon->qmp.commands = &qmp_commands;
 }
 
-/* set the current CPU defined by the user */
+/* Set the current CPU defined by the user. Callers must hold BQL. */
 int monitor_set_cpu(int cpu_index)
 {
     CPUState *cpu;
@@ -1325,6 +1333,7 @@ int monitor_set_cpu(int cpu_index)
     return 0;
 }
 
+/* Callers must hold BQL. */
 static CPUState *mon_get_cpu_sync(bool synchronize)
 {
     CPUState *cpu;
-- 
2.17.1

  parent reply	other threads:[~2018-06-18 14:08 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-18 14:08 [Qemu-devel] [PULL 0/7] monitor: Thread safety improvements Markus Armbruster
2018-06-18 14:08 ` [Qemu-devel] [PULL 1/7] monitor: rename out_lock to mon_lock Markus Armbruster
2018-06-18 14:08 ` [Qemu-devel] [PULL 2/7] monitor: protect mon->fds with mon_lock Markus Armbruster
2018-06-18 14:08 ` Markus Armbruster [this message]
2018-06-18 14:08 ` [Qemu-devel] [PULL 4/7] monitor: fix comment for monitor_lock Markus Armbruster
2018-06-18 14:08 ` [Qemu-devel] [PULL 5/7] monitor: remove event_clock_type Markus Armbruster
2018-06-18 14:08 ` [Qemu-devel] [PULL 6/7] monitor: move init global earlier Markus Armbruster
2018-09-05 15:05   ` Wolfgang Bumiller
2018-09-06  3:38     ` Peter Xu
2018-06-18 14:08 ` [Qemu-devel] [PULL 7/7] monitor: add lock to protect mon_fdsets Markus Armbruster
2018-06-19 15:04 ` [Qemu-devel] [PULL 0/7] monitor: Thread safety improvements Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180618140854.17824-4-armbru@redhat.com \
    --to=armbru@redhat.com \
    --cc=peterx@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).