* [kvm-unit-tests PATCH 1/1] x86/hyperv: improve naming of stimer functions
@ 2022-01-04 17:06 Kaya, Metin
0 siblings, 0 replies; only message in thread
From: Kaya, Metin @ 2022-01-04 17:06 UTC (permalink / raw)
To: kvm@vger.kernel.org
[-- Attachment #1: Type: text/plain, Size: 114 bytes --]
- synic_supported() is renamed to hv_synic_supported().
- stimer_supported() is renamed to hv_stimer_supported().
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-x86-hyperv-improve-naming-of-stimer-functions.patch --]
[-- Type: text/x-patch; name="0001-x86-hyperv-improve-naming-of-stimer-functions.patch", Size: 2387 bytes --]
From 9d5ff263f25444d207974135daa6084300bcf286 Mon Sep 17 00:00:00 2001
From: Metin Kaya <metikaya@amazon.com>
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@amazon.com>
---
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
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2022-01-04 17:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-04 17:06 [kvm-unit-tests PATCH 1/1] x86/hyperv: improve naming of stimer functions Kaya, Metin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.