diff options
| author | Juergen Gross <[email protected]> | 2023-09-13 13:38:26 +0200 |
|---|---|---|
| committer | Juergen Gross <[email protected]> | 2023-09-19 07:04:49 +0200 |
| commit | 361239fd1448d64faa4adba5bbf100401c0a606e (patch) | |
| tree | 3e67abc5d1a8a440388cdf65f4cd70009b89628d | |
| parent | 37510dd566bdbff31a769cde2fa6654bccdb8b24 (diff) | |
arm/xen: remove lazy mode related definitions
include/xen/arm/hypervisor.h contains definitions related to paravirt
lazy mode, which are used nowhere in the code.
All paravirt lazy mode related users are in x86 code, so remove the
definitions on Arm side.
Signed-off-by: Juergen Gross <[email protected]>
Acked-by: Stefano Stabellini <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Juergen Gross <[email protected]>
| -rw-r--r-- | include/xen/arm/hypervisor.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/xen/arm/hypervisor.h b/include/xen/arm/hypervisor.h index 43ef24dd030e..9995695204f5 100644 --- a/include/xen/arm/hypervisor.h +++ b/include/xen/arm/hypervisor.h @@ -7,18 +7,6 @@ extern struct shared_info *HYPERVISOR_shared_info; extern struct start_info *xen_start_info; -/* Lazy mode for batching updates / context switch */ -enum paravirt_lazy_mode { - PARAVIRT_LAZY_NONE, - PARAVIRT_LAZY_MMU, - PARAVIRT_LAZY_CPU, -}; - -static inline enum paravirt_lazy_mode paravirt_get_lazy_mode(void) -{ - return PARAVIRT_LAZY_NONE; -} - #ifdef CONFIG_XEN void __init xen_early_init(void); #else |