qmp-commands: move 'migrate-set-cache-size' doc to schema
[qemu/ar7.git] / docs / qmp-commands.txt
blob0de1b04aa99b8c8339ef423e0a13e4f34ec1ca85
1                         QMP Supported Commands
2                         ----------------------
4 This document describes all commands currently supported by QMP.
6 Most of the time their usage is exactly the same as in the user Monitor, this
7 means that any other document which also describe commands (the manpage,
8 QEMU's manual, etc) can and should be consulted.
10 QMP has two types of commands: regular and query commands. Regular commands
11 usually change the Virtual Machine's state someway, while query commands just
12 return information. The sections below are divided accordingly.
14 It's important to observe that all communication examples are formatted in
15 a reader-friendly way, so that they're easier to understand. However, in real
16 protocol usage, they're emitted as a single line.
18 Also, the following notation is used to denote data flow:
20 -> data issued by the Client
21 <- Server data response
23 Please, refer to the QMP specification (docs/qmp-spec.txt) for detailed
24 information on the Server command and response formats.
26 NOTE: This document is temporary and will be replaced soon.
28 1. Stability Considerations
29 ===========================
31 The current QMP command set (described in this file) may be useful for a
32 number of use cases, however it's limited and several commands have bad
33 defined semantics, specially with regard to command completion.
35 These problems are going to be solved incrementally in the next QEMU releases
36 and we're going to establish a deprecation policy for badly defined commands.
38 If you're planning to adopt QMP, please observe the following:
40     1. The deprecation policy will take effect and be documented soon, please
41        check the documentation of each used command as soon as a new release of
42        QEMU is available
44     2. DO NOT rely on anything which is not explicit documented
46     3. Errors, in special, are not documented. Applications should NOT check
47        for specific errors classes or data (it's strongly recommended to only
48        check for the "error" key)
50 2. Regular Commands
51 ===================
53 Server's responses in the examples below are always a success response, please
54 refer to the QMP specification for more details on error responses.
56 device_add
57 ----------
59 Add a device.
61 Arguments:
63 - "driver": the name of the new device's driver (json-string)
64 - "bus": the device's parent bus (device tree path, json-string, optional)
65 - "id": the device's ID, must be unique (json-string)
66 - device properties
68 Example:
70 -> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
71 <- { "return": {} }
73 Notes:
75 (1) For detailed information about this command, please refer to the
76     'docs/qdev-device-use.txt' file.
78 (2) It's possible to list device properties by running QEMU with the
79     "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
81 cpu
82 ---
84 Set the default CPU.
86 Arguments:
88 - "index": the CPU's index (json-int)
90 Example:
92 -> { "execute": "cpu", "arguments": { "index": 0 } }
93 <- { "return": {} }
95 Note: CPUs' indexes are obtained with the 'query-cpus' command.
97 xen-load-devices-state
98 ----------------------
100 Load the state of all devices from file. The RAM and the block devices
101 of the VM are not loaded by this command.
103 Arguments:
105 - "filename": the file to load the state of the devices from as binary
106 data. See xen-save-devices-state.txt for a description of the binary
107 format.
109 Example:
111 -> { "execute": "xen-load-devices-state",
112      "arguments": { "filename": "/tmp/resume" } }
113 <- { "return": {} }
115 x-colo-lost-heartbeat
116 --------------------
118 Tell COLO that heartbeat is lost, a failover or takeover is needed.
120 Example:
122 -> { "execute": "x-colo-lost-heartbeat" }
123 <- { "return": {} }
125 qmp_capabilities
126 ----------------
128 Enable QMP capabilities.
130 Arguments: None.
132 Example:
134 -> { "execute": "qmp_capabilities" }
135 <- { "return": {} }
137 Note: This command must be issued before issuing any other command.
139 3. Query Commands
140 =================
143 query-qmp-schema
144 ----------------
146 Return the QMP wire schema.  The returned value is a json-array of
147 named schema entities.  Entities are commands, events and various
148 types.  See docs/qapi-code-gen.txt for information on their structure
149 and intended use.