diff options
| author | Markus Armbruster <armbru@redhat.com> | 2021-03-18 16:55:18 +0100 |
|---|---|---|
| committer | Markus Armbruster <armbru@redhat.com> | 2021-03-19 16:05:11 +0100 |
| commit | db29164103e53ae7c112086127e3d1c92b1d4d89 (patch) | |
| tree | 97d0238e1d19d87ee0ca9dbc09e3dd46a1a93eda /include/qapi/visitor-impl.h | |
| parent | d2032598c434fe385145ee6ea58007a19ef7e723 (diff) | |
| download | focaccia-qemu-db29164103e53ae7c112086127e3d1c92b1d4d89.tar.gz focaccia-qemu-db29164103e53ae7c112086127e3d1c92b1d4d89.zip | |
qapi: Implement deprecated-input=reject for QMP command arguments
This policy rejects deprecated input, and thus permits "testing the
future". Implement it for QMP command arguments: reject commands with
deprecated ones. Example: when QEMU is run with -compat
deprecated-input=reject, then
{"execute": "eject", "arguments": {"device": "cd"}}
fails like this
{"error": {"class": "GenericError", "desc": "Deprecated parameter 'device' disabled by policy"}}
When the deprecated parameter is removed, the error will change to
{"error": {"class": "GenericError", "desc": "Parameter 'device' is unexpected"}}
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Message-Id: <20210318155519.1224118-11-armbru@redhat.com>
Diffstat (limited to 'include/qapi/visitor-impl.h')
| -rw-r--r-- | include/qapi/visitor-impl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/qapi/visitor-impl.h b/include/qapi/visitor-impl.h index 2d853255a3..3b950f6e3d 100644 --- a/include/qapi/visitor-impl.h +++ b/include/qapi/visitor-impl.h @@ -114,6 +114,9 @@ struct Visitor void (*optional)(Visitor *v, const char *name, bool *present); /* Optional */ + bool (*deprecated_accept)(Visitor *v, const char *name, Error **errp); + + /* Optional */ bool (*deprecated)(Visitor *v, const char *name); /* Must be set */ |