diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:06:17 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:27 +0100 |
commit | 978d4d97dac8ab98e28011fd696e2594a999af26 (patch) | |
tree | a787f8018f206c3df95909b24cafe176ca49902a /qapi-schema.json | |
parent | 30831b63dac44e2cac6779a7d2db34daa560b142 (diff) |
qmp-commands: move 'pmemsave' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 64acc1c228..0bdd193f71 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -2260,6 +2260,15 @@ # Since: 0.14.0 # # Notes: Errors were not reliably returned until 1.1 +# +# Example: +# +# -> { "execute": "pmemsave", +# "arguments": { "val": 10, +# "size": 100, +# "filename": "/tmp/physical-mem-dump" } } +# <- { "return": {} } +# ## { 'command': 'pmemsave', 'data': {'val': 'int', 'size': 'int', 'filename': 'str'} } |