mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 09:13:55 -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;
|
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;
|
CPUARMState *env = &cpu->env;
|
||||||
struct kvm_vcpu_events events;
|
struct kvm_vcpu_events events;
|
||||||
|
@ -1119,7 +1127,15 @@ int kvm_put_vcpu_events(ARMCPU *cpu)
|
||||||
return ret;
|
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;
|
CPUARMState *env = &cpu->env;
|
||||||
struct kvm_vcpu_events events;
|
struct kvm_vcpu_events events;
|
||||||
|
|
|
@ -98,26 +98,6 @@ void kvm_arm_cpu_post_load(ARMCPU *cpu);
|
||||||
*/
|
*/
|
||||||
void kvm_arm_reset_vcpu(ARMCPU *cpu);
|
void kvm_arm_reset_vcpu(ARMCPU *cpu);
|
||||||
|
|
||||||
/**
|
|
||||||
* kvm_get_vcpu_events:
|
|
||||||
* @cpu: ARMCPU
|
|
||||||
*
|
|
||||||
* Get VCPU related state from kvm.
|
|
||||||
*
|
|
||||||
* Returns: 0 if success else < 0 error code
|
|
||||||
*/
|
|
||||||
int kvm_get_vcpu_events(ARMCPU *cpu);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* kvm_put_vcpu_events:
|
|
||||||
* @cpu: ARMCPU
|
|
||||||
*
|
|
||||||
* Put VCPU related state to kvm.
|
|
||||||
*
|
|
||||||
* Returns: 0 if success else < 0 error code
|
|
||||||
*/
|
|
||||||
int kvm_put_vcpu_events(ARMCPU *cpu);
|
|
||||||
|
|
||||||
#ifdef CONFIG_KVM
|
#ifdef CONFIG_KVM
|
||||||
/**
|
/**
|
||||||
* kvm_arm_create_scratch_host_vcpu:
|
* kvm_arm_create_scratch_host_vcpu:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue