aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@redhat.com>2016-06-23 13:05:26 +0200
committerMarkus Armbruster <armbru@redhat.com>2017-01-16 09:15:27 +0100
commit30831b63dac44e2cac6779a7d2db34daa560b142 (patch)
treef5ca5b668c3f5364806b45fb4009aa374b7ec753 /docs
parenta7b83754aaff4e9dd012730e3060bfd2de9eee86 (diff)
downloadqemu-30831b63dac44e2cac6779a7d2db34daa560b142.zip
qemu-30831b63dac44e2cac6779a7d2db34daa560b142.tar.gz
qemu-30831b63dac44e2cac6779a7d2db34daa560b142.tar.bz2
qmp-commands: move 'memsave' doc to schema
Notice that "cpu" argument is actually "cpu-index" in the json. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/qmp-commands.txt20
1 files changed, 0 insertions, 20 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt
index 215239f..df988ab 100644
--- a/docs/qmp-commands.txt
+++ b/docs/qmp-commands.txt
@@ -219,26 +219,6 @@ Example:
Note: CPUs' indexes are obtained with the 'query-cpus' command.
-memsave
--------
-
-Save to disk virtual memory dump starting at 'val' of size 'size'.
-
-Arguments:
-
-- "val": the starting address (json-int)
-- "size": the memory size, in bytes (json-int)
-- "filename": file path (json-string)
-- "cpu": virtual CPU index (json-int, optional)
-
-Example:
-
--> { "execute": "memsave",
- "arguments": { "val": 10,
- "size": 100,
- "filename": "/tmp/virtual-mem-dump" } }
-<- { "return": {} }
-
pmemsave
--------