mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-26 20:03:54 -06:00
qapi: Factor out compat_policy_input_ok()
The code to check policy for handling deprecated input is triplicated. Factor it out into compat_policy_input_ok() before I mess with it in the next commit. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20211028102520.747396-9-armbru@redhat.com> [Policy code moved from qmp-dispatch.c to qapi-util.c to make visitors link without qmp-dispatch.o]
This commit is contained in:
parent
c868876043
commit
7ce5fc63c7
5 changed files with 58 additions and 42 deletions
|
@ -14,6 +14,7 @@
|
|||
|
||||
#include "qemu/osdep.h"
|
||||
#include <math.h>
|
||||
#include "qapi/compat-policy.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qapi/qobject-input-visitor.h"
|
||||
#include "qapi/visitor-impl.h"
|
||||
|
@ -666,21 +667,9 @@ static bool qobject_input_policy_reject(Visitor *v, const char *name,
|
|||
unsigned special_features,
|
||||
Error **errp)
|
||||
{
|
||||
if (!(special_features & 1u << QAPI_DEPRECATED)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
switch (v->compat_policy.deprecated_input) {
|
||||
case COMPAT_POLICY_INPUT_ACCEPT:
|
||||
return false;
|
||||
case COMPAT_POLICY_INPUT_REJECT:
|
||||
error_setg(errp, "Deprecated parameter '%s' disabled by policy",
|
||||
name);
|
||||
return true;
|
||||
case COMPAT_POLICY_INPUT_CRASH:
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
return !compat_policy_input_ok(special_features, &v->compat_policy,
|
||||
ERROR_CLASS_GENERIC_ERROR,
|
||||
"parameter", name, errp);
|
||||
}
|
||||
|
||||
static void qobject_input_free(Visitor *v)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue