From 4375cf9868fbb7abcaae119ac993b13f72dfe8f2 Mon Sep 17 00:00:00 2001 From: Victor Toso Date: Mon, 28 Mar 2022 16:06:04 +0200 Subject: [PATCH] qapi: fix example of dump-guest-memory Example output lacks mandatory member @paging. Provide it. Signed-off-by: Victor Toso Reviewed-by: John Snow Message-Id: <20220328140604.41484-15-victortoso@redhat.com> Reviewed-by: Markus Armbruster Signed-off-by: Markus Armbruster --- qapi/dump.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qapi/dump.json b/qapi/dump.json index 9119c82b14..29441af9d8 100644 --- a/qapi/dump.json +++ b/qapi/dump.json @@ -83,7 +83,7 @@ # Example: # # -> { "execute": "dump-guest-memory", -# "arguments": { "protocol": "fd:dump" } } +# "arguments": { "paging": false, "protocol": "fd:dump" } } # <- { "return": {} } # ##