mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-17 07:54:54 +08:00
e0685fa228
Enable paravirtualization features when running under a hypervisor supporting the PV_TIME_ST hypercall. For each (v)CPU, we ask the hypervisor for the location of a shared page which the hypervisor will use to report stolen time to us. We set pv_time_ops to the stolen time function which simply reads the stolen value from the shared page for a VCPU. We guarantee single-copy atomicity using READ_ONCE which means we can also read the stolen time for another VCPU than the currently running one while it is potentially being updated by the hypervisor. Signed-off-by: Steven Price <steven.price@arm.com> Signed-off-by: Marc Zyngier <maz@kernel.org>
34 lines
628 B
C
34 lines
628 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_ARM64_PARAVIRT_H
|
|
#define _ASM_ARM64_PARAVIRT_H
|
|
|
|
#ifdef CONFIG_PARAVIRT
|
|
struct static_key;
|
|
extern struct static_key paravirt_steal_enabled;
|
|
extern struct static_key paravirt_steal_rq_enabled;
|
|
|
|
struct pv_time_ops {
|
|
unsigned long long (*steal_clock)(int cpu);
|
|
};
|
|
|
|
struct paravirt_patch_template {
|
|
struct pv_time_ops time;
|
|
};
|
|
|
|
extern struct paravirt_patch_template pv_ops;
|
|
|
|
static inline u64 paravirt_steal_clock(int cpu)
|
|
{
|
|
return pv_ops.time.steal_clock(cpu);
|
|
}
|
|
|
|
int __init pv_time_init(void);
|
|
|
|
#else
|
|
|
|
#define pv_time_init() do {} while (0)
|
|
|
|
#endif // CONFIG_PARAVIRT
|
|
|
|
#endif
|