diff options
author | Kevin Wolf | 2019-06-13 17:33:58 +0200 |
---|---|---|
committer | Markus Armbruster | 2019-06-17 20:36:56 +0200 |
commit | f1b3ccfaa682b7b5d0043ab934660a49e33d0139 (patch) | |
tree | d948d12adc9892df43ce33a1525a4b4301cf6090 /MAINTAINERS | |
parent | Move monitor.c to monitor/misc.c (diff) | |
download | qemu-f1b3ccfaa682b7b5d0043ab934660a49e33d0139.tar.gz qemu-f1b3ccfaa682b7b5d0043ab934660a49e33d0139.tar.xz qemu-f1b3ccfaa682b7b5d0043ab934660a49e33d0139.zip |
monitor: Move {hmp, qmp}.c to monitor/{hmp, qmp}-cmds.c
Now that we have a monitor/ subdirectory, let's move hmp.c and qmp.c
from the root directory there. As they contain implementations of
monitor commands, rename them to {hmp,qmp}-cmds.c, so that {hmp,qmp}.c
are free for the HMP and QMP infrastructure.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190613153405.24769-9-kwolf@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 575ea6e68d..3c7d366727 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1919,7 +1919,8 @@ Human Monitor (HMP) M: Dr. David Alan Gilbert <dgilbert@redhat.com> S: Maintained F: monitor/misc.c -F: hmp.[ch] +F: monitor/hmp* +F: hmp.h F: hmp-commands*.hx F: include/monitor/hmp-target.h F: tests/test-hmp.c @@ -2039,7 +2040,7 @@ F: tests/check-qom-proplist.c QMP M: Markus Armbruster <armbru@redhat.com> S: Supported -F: qmp.c +F: monitor/qmp* F: monitor/misc.c F: docs/devel/*qmp-* F: docs/interop/*qmp-* |