diff options
author | Markus Armbruster <armbru@redhat.com> | 2021-02-01 17:15:02 +0100 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2021-02-04 13:20:29 +0100 |
commit | 395a95080ad9ccf08b71fa4b7909455ba42f2202 (patch) | |
tree | 19a2b4de807a32fcc95faa5a1c156916387aaae3 /monitor | |
parent | 781386afd2b809a8a63b65e9bfb645c4a8abdf50 (diff) |
qmp: Fix up comments after commit 9ce44e2ce2
Commit 9ce44e2ce2 "qmp: Move dispatcher to a coroutine" replaced
monitor_qmp_bh_dispatcher() by monitor_qmp_dispatcher_co(), but
neglected to update comments. Do that now.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20210201161504.1976989-2-armbru@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/qmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor/qmp.c b/monitor/qmp.c index 8f91af32be..f6a1e7783b 100644 --- a/monitor/qmp.c +++ b/monitor/qmp.c @@ -79,7 +79,7 @@ static void monitor_qmp_cleanup_queue_and_resume(MonitorQMP *mon) qemu_mutex_lock(&mon->qmp_queue_lock); /* - * Same condition as in monitor_qmp_bh_dispatcher(), but before + * Same condition as in monitor_qmp_dispatcher_co(), but before * removing an element from the queue (hence no `- 1`). * Also, the queue should not be empty either, otherwise the * monitor hasn't been suspended yet (or was already resumed). @@ -349,7 +349,7 @@ static void handle_qmp_command(void *opaque, QObject *req, Error *err) /* * Suspend the monitor when we can't queue more requests after - * this one. Dequeuing in monitor_qmp_bh_dispatcher() or + * this one. Dequeuing in monitor_qmp_dispatcher_co() or * monitor_qmp_cleanup_queue_and_resume() will resume it. * Note that when OOB is disabled, we queue at most one command, * for backward compatibility. |