summaryrefslogtreecommitdiff
path: root/monitor/Makefile.objs
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2020-01-29 11:22:38 +0100
committerMarkus Armbruster <armbru@redhat.com>2020-02-17 13:53:47 +0100
commit567628163ec8c6b76ba3117c3062edc0521dc185 (patch)
treeb98bacb145d58d17a279e484db56311a10deaead /monitor/Makefile.objs
parentfa4dcf577ea61758bf55b64c8f9590c29897fb82 (diff)
downloadqemu-567628163ec8c6b76ba3117c3062edc0521dc185.zip
monitor: Collect "control" command handlers in qmp-cmds.control.c
Move all of the QMP commands handlers to implement the 'control' module (qapi/control.json) that can be shared between the system emulator and tools such as a storage daemon to a new file monitor/qmp-cmds-control.c. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20200129102239.31435-4-kwolf@redhat.com> [Commit message tweaked] Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'monitor/Makefile.objs')
-rw-r--r--monitor/Makefile.objs3
1 files changed, 2 insertions, 1 deletions
diff --git a/monitor/Makefile.objs b/monitor/Makefile.objs
index e91a8581cd..9244d90859 100644
--- a/monitor/Makefile.objs
+++ b/monitor/Makefile.objs
@@ -1,3 +1,4 @@
obj-y += misc.o
common-obj-y += monitor.o qmp.o hmp.o
-common-obj-y += qmp-cmds.o hmp-cmds.o
+common-obj-y += qmp-cmds.o qmp-cmds-control.o
+common-obj-y += hmp-cmds.o