Message ID | 20220328140604.41484-15-victortoso@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix some qapi examples and a TODO section | expand |
Victor Toso <victortoso@redhat.com> writes: > Example output lacks mandatory member @paging. Provide it. > > Signed-off-by: Victor Toso <victortoso@redhat.com> > Reviewed-by: John Snow <jsnow@redhat.com> > --- > 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": {} } > # > ## Reviewed-by: Markus Armbruster <armbru@redhat.com>
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": {} } # ##