diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:29:50 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:29 +0100 |
commit | 58e4300a7f5864950a3486ce81b144472161b870 (patch) | |
tree | 97602b91fbe40ebf93073a2ae423d8bb7eaa3327 /docs/qmp-commands.txt | |
parent | e389c0049afae90de2b958afa439dd9f47b12c1d (diff) | |
download | qemu-58e4300a7f5864950a3486ce81b144472161b870.zip qemu-58e4300a7f5864950a3486ce81b144472161b870.tar.gz qemu-58e4300a7f5864950a3486ce81b144472161b870.tar.bz2 |
qmp-commands: move 'dump-guest-memory' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs/qmp-commands.txt')
-rw-r--r-- | docs/qmp-commands.txt | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 8adc106..162467e 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -192,36 +192,6 @@ Example: -> { "execute": "x-colo-lost-heartbeat" } <- { "return": {} } -dump - - -Dump guest memory to file. The file can be processed with crash or gdb. - -Arguments: - -- "paging": do paging to get guest's memory mapping (json-bool) -- "protocol": destination file(started with "file:") or destination file - descriptor (started with "fd:") (json-string) -- "detach": if specified, command will return immediately, without waiting - for the dump to finish. The user can track progress using - "query-dump". (json-bool) -- "begin": the starting physical address. It's optional, and should be specified - with length together (json-int) -- "length": the memory size, in bytes. It's optional, and should be specified - with begin together (json-int) -- "format": the format of guest memory dump. It's optional, and can be - elf|kdump-zlib|kdump-lzo|kdump-snappy, but non-elf formats will - conflict with paging and filter, ie. begin and length (json-string) - -Example: - --> { "execute": "dump-guest-memory", "arguments": { "protocol": "fd:dump" } } -<- { "return": {} } - -Notes: - -(1) All boolean arguments default to false - query-dump-guest-memory-capability ---------- |