diff options
| author | Peter Maydell | 2021-07-30 12:59:41 +0200 |
|---|---|---|
| committer | Peter Maydell | 2021-08-26 18:02:00 +0200 |
| commit | 4f9205be45ab84398e6ef3bb10af01b3f4a9cef7 (patch) | |
| tree | a365745ebaf4eee676f0c05af31307011c484051 /monitor | |
| parent | softmmu: Use accel_find("xen") instead of xen_available() (diff) | |
| download | qemu-4f9205be45ab84398e6ef3bb10af01b3f4a9cef7.tar.gz qemu-4f9205be45ab84398e6ef3bb10af01b3f4a9cef7.tar.xz qemu-4f9205be45ab84398e6ef3bb10af01b3f4a9cef7.zip | |
monitor: Use accel_find("kvm") instead of kvm_available()
The kvm_available() function reports whether KVM support was
compiled into the QEMU binary; it returns the value of the
CONFIG_KVM define.
The only place in the codebase where we use this function is
in qmp_query_kvm(). Now that accelerators are based on QOM
classes we can instead use accel_find("kvm") and remove the
kvm_available() function.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20210730105947.28215-3-peter.maydell@linaro.org
Diffstat (limited to 'monitor')
| -rw-r--r-- | monitor/qmp-cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/monitor/qmp-cmds.c b/monitor/qmp-cmds.c index f7d64a6457..9ddb9352e6 100644 --- a/monitor/qmp-cmds.c +++ b/monitor/qmp-cmds.c @@ -58,7 +58,7 @@ KvmInfo *qmp_query_kvm(Error **errp) KvmInfo *info = g_malloc0(sizeof(*info)); info->enabled = kvm_enabled(); - info->present = kvm_available(); + info->present = accel_find("kvm"); return info; } |
