- synic_supported() is renamed to hv_synic_supported().
- stimer_supported() is renamed to hv_stimer_supported().
From 9d5ff263f25444d207974135daa6084300bcf286 Mon Sep 17 00:00:00 2001
From: Metin Kaya <metikaya@xxxxxxxxxx>
Date: Tue, 4 Jan 2022 17:02:04 +0000
Subject: [kvm-unit-tests PATCH 3/3] x86/hyperv: improve naming of stimer
functions
- synic_supported() is renamed to hv_synic_supported().
- stimer_supported() is renamed to hv_stimer_supported().
Signed-off-by: Metin Kaya <metikaya@xxxxxxxxxx>
---
x86/hyperv.h | 4 ++--
x86/hyperv_connections.c | 2 +-
x86/hyperv_stimer.c | 4 ++--
x86/hyperv_synic.c | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/x86/hyperv.h b/x86/hyperv.h
index bc165c3..3e1723e 100644
--- a/x86/hyperv.h
+++ b/x86/hyperv.h
@@ -183,12 +183,12 @@ struct hv_input_post_message {
u64 payload[HV_MESSAGE_PAYLOAD_QWORD_COUNT];
};
-static inline bool synic_supported(void)
+static inline bool hv_synic_supported(void)
{
return cpuid(HYPERV_CPUID_FEATURES).a & HV_X64_MSR_SYNIC_AVAILABLE;
}
-static inline bool stimer_supported(void)
+static inline bool hv_stimer_supported(void)
{
return cpuid(HYPERV_CPUID_FEATURES).a & HV_X64_MSR_SYNTIMER_AVAILABLE;
}
diff --git a/x86/hyperv_connections.c b/x86/hyperv_connections.c
index 6e8ac32..049fd78 100644
--- a/x86/hyperv_connections.c
+++ b/x86/hyperv_connections.c
@@ -266,7 +266,7 @@ int main(int ac, char **av)
{
int ncpus, ncpus_ok, i;
- if (!synic_supported()) {
+ if (!hv_synic_supported()) {
report_skip("Hyper-V SynIC is not supported");
goto summary;
}
diff --git a/x86/hyperv_stimer.c b/x86/hyperv_stimer.c
index 7b7c985..baa313f 100644
--- a/x86/hyperv_stimer.c
+++ b/x86/hyperv_stimer.c
@@ -352,12 +352,12 @@ static void stimer_test_all(void)
int main(int ac, char **av)
{
- if (!synic_supported()) {
+ if (!hv_synic_supported()) {
report_pass("Hyper-V SynIC is not supported");
goto done;
}
- if (!stimer_supported()) {
+ if (!hv_stimer_supported()) {
report_pass("Hyper-V SynIC timers are not supported");
goto done;
}
diff --git a/x86/hyperv_synic.c b/x86/hyperv_synic.c
index 5ca593c..dc17978 100644
--- a/x86/hyperv_synic.c
+++ b/x86/hyperv_synic.c
@@ -142,7 +142,7 @@ static void synic_test_cleanup(void *ctx)
int main(int ac, char **av)
{
- if (synic_supported()) {
+ if (hv_synic_supported()) {
int ncpus, i;
bool ok;
--
2.32.0