diff options
| author | Nuno Das Neves <nunodasneves@linux.microsoft.com> | 2025-03-14 12:28:52 -0700 |
|---|---|---|
| committer | Wei Liu <wei.liu@kernel.org> | 2025-03-20 21:23:04 +0000 |
| commit | 21050f619720029e89d365b0e1328eafe088dbd8 (patch) | |
| tree | 4ab16af3841dab188910e8a50ab89b314a287b2d /drivers/hv | |
| parent | acpi: numa: Export node_to_pxm() (diff) | |
| download | linux-21050f619720029e89d365b0e1328eafe088dbd8.tar.gz linux-21050f619720029e89d365b0e1328eafe088dbd8.zip | |
Drivers: hv: Export some functions for use by root partition module
hv_get_hypervisor_version(), hv_call_deposit_pages(), and
hv_call_create_vp(), are all needed in-module with CONFIG_MSHV_ROOT=m.
Signed-off-by: Nuno Das Neves <nunodasneves@linux.microsoft.com>
Reviewed-by: Stanislav Kinsburskii <skinsburskii@microsoft.linux.com>
Reviewed-by: Roman Kisel <romank@linux.microsoft.com>
Reviewed-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Reviewed-by: Tianyu Lan <tiala@microsoft.com>
Link: https://lore.kernel.org/r/1741980536-3865-7-git-send-email-nunodasneves@linux.microsoft.com
Signed-off-by: Wei Liu <wei.liu@kernel.org>
Message-ID: <1741980536-3865-7-git-send-email-nunodasneves@linux.microsoft.com>
Diffstat (limited to 'drivers/hv')
| -rw-r--r-- | drivers/hv/hv_proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hv/hv_proc.c b/drivers/hv/hv_proc.c index 605999f10e17..7d7ecb6f6137 100644 --- a/drivers/hv/hv_proc.c +++ b/drivers/hv/hv_proc.c @@ -107,6 +107,7 @@ free_buf: kfree(counts); return ret; } +EXPORT_SYMBOL_GPL(hv_call_deposit_pages); int hv_call_add_logical_proc(int node, u32 lp_index, u32 apic_id) { @@ -191,4 +192,4 @@ int hv_call_create_vp(int node, u64 partition_id, u32 vp_index, u32 flags) return ret; } - +EXPORT_SYMBOL_GPL(hv_call_create_vp); |
