diff options
author | Michael Kelley <mikelley@microsoft.com> | 2021-07-14 11:34:47 -0700 |
---|---|---|
committer | Wei Liu <wei.liu@kernel.org> | 2021-07-15 12:59:45 +0000 |
commit | 6dc77fa5ac2cf26f846a51492dbe42526e26d0f2 (patch) | |
tree | 53accb41ffae4921b6eaf92ec7c50ffc62f9d19a /arch/x86/hyperv | |
parent | 9d7cf2c9675838c12cd5cf5a4ebe2ba41bd78a44 (diff) | |
download | linux-rpi-6dc77fa5ac2cf26f846a51492dbe42526e26d0f2.tar.gz linux-rpi-6dc77fa5ac2cf26f846a51492dbe42526e26d0f2.tar.bz2 linux-rpi-6dc77fa5ac2cf26f846a51492dbe42526e26d0f2.zip |
Drivers: hv: Move Hyper-V misc functionality to arch-neutral code
The check for whether hibernation is possible, and the enabling of
Hyper-V panic notification during kexec, are both architecture neutral.
Move the code from under arch/x86 and into drivers/hv/hv_common.c where
it can also be used for ARM64.
No functional change.
Signed-off-by: Michael Kelley <mikelley@microsoft.com>
Link: https://lore.kernel.org/r/1626287687-2045-4-git-send-email-mikelley@microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Diffstat (limited to 'arch/x86/hyperv')
-rw-r--r-- | arch/x86/hyperv/hv_init.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/x86/hyperv/hv_init.c b/arch/x86/hyperv/hv_init.c index e87a0293b705..6f247e7e07eb 100644 --- a/arch/x86/hyperv/hv_init.c +++ b/arch/x86/hyperv/hv_init.c @@ -7,10 +7,10 @@ * Author : K. Y. Srinivasan <kys@microsoft.com> */ -#include <linux/acpi.h> #include <linux/efi.h> #include <linux/types.h> #include <linux/bitfield.h> +#include <linux/io.h> #include <asm/apic.h> #include <asm/desc.h> #include <asm/hypervisor.h> @@ -523,12 +523,6 @@ bool hv_is_hyperv_initialized(void) } EXPORT_SYMBOL_GPL(hv_is_hyperv_initialized); -bool hv_is_hibernation_supported(void) -{ - return !hv_root_partition && acpi_sleep_state_supported(ACPI_STATE_S4); -} -EXPORT_SYMBOL_GPL(hv_is_hibernation_supported); - enum hv_isolation_type hv_get_isolation_type(void) { if (!(ms_hyperv.priv_high & HV_ISOLATION)) |