mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target/arm/kvm: Unexport kvm_{get,put}_vcpu_events
Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Gavin Shan <gshan@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
51641de468
commit
353e03cd45
2 changed files with 18 additions and 22 deletions
|
@ -1090,7 +1090,15 @@ static void kvm_arm_put_virtual_time(CPUState *cs)
|
|||
cpu->kvm_vtime_dirty = false;
|
||||
}
|
||||
|
||||
int kvm_put_vcpu_events(ARMCPU *cpu)
|
||||
/**
|
||||
* kvm_put_vcpu_events:
|
||||
* @cpu: ARMCPU
|
||||
*
|
||||
* Put VCPU related state to kvm.
|
||||
*
|
||||
* Returns: 0 if success else < 0 error code
|
||||
*/
|
||||
static int kvm_put_vcpu_events(ARMCPU *cpu)
|
||||
{
|
||||
CPUARMState *env = &cpu->env;
|
||||
struct kvm_vcpu_events events;
|
||||
|
@ -1119,7 +1127,15 @@ int kvm_put_vcpu_events(ARMCPU *cpu)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int kvm_get_vcpu_events(ARMCPU *cpu)
|
||||
/**
|
||||
* kvm_get_vcpu_events:
|
||||
* @cpu: ARMCPU
|
||||
*
|
||||
* Get VCPU related state from kvm.
|
||||
*
|
||||
* Returns: 0 if success else < 0 error code
|
||||
*/
|
||||
static int kvm_get_vcpu_events(ARMCPU *cpu)
|
||||
{
|
||||
CPUARMState *env = &cpu->env;
|
||||
struct kvm_vcpu_events events;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue