From: Daniel P. Berrangé Date: Thu, 9 Sep 2021 15:54:02 +0000 (+0100) Subject: docs/devel: rename file for writing monitor commands X-Git-Tag: v6.2.0-rc0~18^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0e33e3d2c40f68f71d628dfe57d460f47e416e78;p=thirdparty%2Fqemu.git docs/devel: rename file for writing monitor commands The file already covers writing HMP commands, in addition to the QMP commands, so it deserves a more general name. Reviewed-by: Eric Blake Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Daniel P. Berrangé --- diff --git a/docs/devel/index.rst b/docs/devel/index.rst index f95df10b3eb..7c25177c5df 100644 --- a/docs/devel/index.rst +++ b/docs/devel/index.rst @@ -44,4 +44,4 @@ modifying QEMU's source code. ebpf_rss vfio-migration qapi-code-gen - writing-qmp-commands + writing-monitor-commands diff --git a/docs/devel/writing-qmp-commands.rst b/docs/devel/writing-monitor-commands.rst similarity index 99% rename from docs/devel/writing-qmp-commands.rst rename to docs/devel/writing-monitor-commands.rst index 6a10a06c483..4a4c051624a 100644 --- a/docs/devel/writing-qmp-commands.rst +++ b/docs/devel/writing-monitor-commands.rst @@ -1,8 +1,8 @@ -How to write QMP commands using the QAPI framework -================================================== +How to write monitor commands +============================= This document is a step-by-step guide on how to write new QMP commands using -the QAPI framework. It also shows how to implement new style HMP commands. +the QAPI framework and HMP commands. This document doesn't discuss QMP protocol level details, nor does it dive into the QAPI framework implementation.