diff options
-rw-r--r-- | kvm-all.c | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -155,15 +155,6 @@ static void kvm_reset_vcpu(void *opaque) } } -static void on_vcpu(CPUState *env, void (*func)(void *data), void *data) -{ - if (env == cpu_single_env) { - func(data); - return; - } - abort(); -} - int kvm_irqchip_in_kernel(void) { return kvm_state->irqchip_in_kernel; @@ -909,6 +900,15 @@ void kvm_setup_guest_memory(void *start, size_t size) } #ifdef KVM_CAP_SET_GUEST_DEBUG +static void on_vcpu(CPUState *env, void (*func)(void *data), void *data) +{ + if (env == cpu_single_env) { + func(data); + return; + } + abort(); +} + struct kvm_sw_breakpoint *kvm_find_sw_breakpoint(CPUState *env, target_ulong pc) { |