]> git.proxmox.com Git - qemu.git/blame - kvm-stub.c
rng-egd: remove redundant free
[qemu.git] / kvm-stub.c
CommitLineData
98c8573e
PB
1/*
2 * QEMU KVM stub
3 *
4 * Copyright Red Hat, Inc. 2010
5 *
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
7 *
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
10 *
11 */
12
13#include "qemu-common.h"
98c8573e 14#include "hw/hw.h"
2b41f10e 15#include "cpu.h"
9c17d615 16#include "sysemu/kvm.h"
98c8573e 17
c4cfef5e
IM
18#ifndef CONFIG_USER_ONLY
19#include "hw/pci/msi.h"
20#endif
21
92b4e489 22KVMState *kvm_state;
bbf3b804 23bool kvm_kernel_irqchip;
7ae26bd4 24bool kvm_async_interrupts_allowed;
cc7e0ddf 25bool kvm_irqfds_allowed;
614e41bc 26bool kvm_msi_via_irqfd_allowed;
f3e1bed8 27bool kvm_gsi_routing_allowed;
76fe21de 28bool kvm_gsi_direct_mapping;
13eed94e 29bool kvm_allowed;
df9c8b75 30bool kvm_readonly_mem_allowed;
92b4e489 31
504134d2 32int kvm_init_vcpu(CPUState *cpu)
98c8573e
PB
33{
34 return -ENOSYS;
35}
36
cad1e282 37int kvm_init(void)
98c8573e
PB
38{
39 return -ENOSYS;
40}
41
42void kvm_flush_coalesced_mmio_buffer(void)
43{
44}
45
dd1750d7 46void kvm_cpu_synchronize_state(CPUState *cpu)
98c8573e
PB
47{
48}
49
3f24a58f 50void kvm_cpu_synchronize_post_reset(CPUState *cpu)
98c8573e
PB
51{
52}
53
3f24a58f 54void kvm_cpu_synchronize_post_init(CPUState *cpu)
98c8573e
PB
55{
56}
57
1458c363 58int kvm_cpu_exec(CPUState *cpu)
98c8573e 59{
1458c363 60 abort();
98c8573e
PB
61}
62
63int kvm_has_sync_mmu(void)
64{
65 return 0;
66}
67
d2f2b8a7
SH
68int kvm_has_many_ioeventfds(void)
69{
70 return 0;
71}
72
8a7c7393
JK
73int kvm_has_pit_state2(void)
74{
75 return 0;
76}
77
98c8573e
PB
78void kvm_setup_guest_memory(void *start, size_t size)
79{
80}
81
38e478ec 82int kvm_update_guest_debug(CPUState *cpu, unsigned long reinject_trap)
98c8573e 83{
4bef75b5 84 return -ENOSYS;
98c8573e
PB
85}
86
62278814 87int kvm_insert_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
88 target_ulong len, int type)
89{
90 return -EINVAL;
91}
92
62278814 93int kvm_remove_breakpoint(CPUState *cpu, target_ulong addr,
98c8573e
PB
94 target_ulong len, int type)
95{
96 return -EINVAL;
97}
98
1d5791f4 99void kvm_remove_all_breakpoints(CPUState *cpu)
98c8573e
PB
100{
101}
102
103#ifndef _WIN32
491d6e80 104int kvm_set_signal_mask(CPUState *cpu, const sigset_t *sigset)
98c8573e
PB
105{
106 abort();
107}
108#endif
109
290adf38 110int kvm_on_sigbus_vcpu(CPUState *cpu, int code, void *addr)
a1b87fe0
JK
111{
112 return 1;
113}
114
c0532a76
MT
115int kvm_on_sigbus(int code, void *addr)
116{
117 return 1;
118}
92b4e489 119
c4cfef5e 120#ifndef CONFIG_USER_ONLY
92b4e489
JK
121int kvm_irqchip_add_msi_route(KVMState *s, MSIMessage msg)
122{
123 return -ENOSYS;
124}
1e2aa8be 125
7b774593
AG
126void kvm_init_irq_routing(KVMState *s)
127{
128}
129
1e2aa8be
JK
130void kvm_irqchip_release_virq(KVMState *s, int virq)
131{
132}
39853bbc 133
078bbb50
MT
134int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg)
135{
136 return -ENOSYS;
137}
138
821c808b
PB
139int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n,
140 EventNotifier *rn, int virq)
39853bbc
JK
141{
142 return -ENOSYS;
143}
144
b131c74a 145int kvm_irqchip_remove_irqfd_notifier(KVMState *s, EventNotifier *n, int virq)
15b2bd18
PB
146{
147 return -ENOSYS;
148}
c4cfef5e 149#endif