[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/21] target/arm/kvm: Inline kvm_arm_steal_time_supported
From: |
Richard Henderson |
Subject: |
[PATCH 09/21] target/arm/kvm: Inline kvm_arm_steal_time_supported |
Date: |
Wed, 22 Nov 2023 22:42:07 -0600 |
This function is only used once, and is quite simple.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/kvm_arm.h | 13 -------------
target/arm/kvm64.c | 7 +------
2 files changed, 1 insertion(+), 19 deletions(-)
diff --git a/target/arm/kvm_arm.h b/target/arm/kvm_arm.h
index e7c32f6ed0..58c087207f 100644
--- a/target/arm/kvm_arm.h
+++ b/target/arm/kvm_arm.h
@@ -274,14 +274,6 @@ void kvm_arm_add_vcpu_properties(Object *obj);
*/
void kvm_arm_steal_time_finalize(ARMCPU *cpu, Error **errp);
-/**
- * kvm_arm_steal_time_supported:
- *
- * Returns: true if KVM can enable steal time reporting
- * and false otherwise.
- */
-bool kvm_arm_steal_time_supported(void);
-
/**
* kvm_arm_aarch32_supported:
*
@@ -374,11 +366,6 @@ static inline bool kvm_arm_sve_supported(void)
return false;
}
-static inline bool kvm_arm_steal_time_supported(void)
-{
- return false;
-}
-
/*
* These functions should never actually be called without KVM support.
*/
diff --git a/target/arm/kvm64.c b/target/arm/kvm64.c
index 6b6db9374c..fca4864b73 100644
--- a/target/arm/kvm64.c
+++ b/target/arm/kvm64.c
@@ -399,7 +399,7 @@ bool kvm_arm_get_host_cpu_features(ARMHostCPUFeatures *ahcf)
void kvm_arm_steal_time_finalize(ARMCPU *cpu, Error **errp)
{
- bool has_steal_time = kvm_arm_steal_time_supported();
+ bool has_steal_time = kvm_check_extension(kvm_state, KVM_CAP_STEAL_TIME);
if (cpu->kvm_steal_time == ON_OFF_AUTO_AUTO) {
if (!has_steal_time || !arm_feature(&cpu->env, ARM_FEATURE_AARCH64)) {
@@ -437,11 +437,6 @@ bool kvm_arm_sve_supported(void)
return kvm_check_extension(kvm_state, KVM_CAP_ARM_SVE);
}
-bool kvm_arm_steal_time_supported(void)
-{
- return kvm_check_extension(kvm_state, KVM_CAP_STEAL_TIME);
-}
-
QEMU_BUILD_BUG_ON(KVM_ARM64_SVE_VQ_MIN != 1);
uint32_t kvm_arm_sve_get_vls(CPUState *cs)
--
2.34.1
- Re: [PATCH 07/21] target/arm/kvm: Move kvm_arm_handle_debug and unexport, (continued)
- [PATCH 02/21] target/arm: kvm64: remove a redundant KVM_CAP_SET_GUEST_DEBUG probe, Richard Henderson, 2023/11/22
- [PATCH 12/21] target/arm/kvm: Move kvm_arm_cpreg_level and unexport, Richard Henderson, 2023/11/22
- [PATCH 10/21] target/arm/kvm: Move kvm_arm_get_host_cpu_features and unexport, Richard Henderson, 2023/11/22
- [PATCH 09/21] target/arm/kvm: Inline kvm_arm_steal_time_supported,
Richard Henderson <=
- [PATCH 08/21] target/arm/kvm: Unexport kvm_arm_{get, put}_virtual_time, Richard Henderson, 2023/11/22
- [PATCH 11/21] target/arm/kvm: Use a switch for kvm_arm_cpreg_level, Richard Henderson, 2023/11/22
- [PATCH 17/21] target/arm/kvm: Unexport kvm_arm_init_cpreg_list, Richard Henderson, 2023/11/22