e1000: bounds packet size against buffer size
[qemu.git] / kvm-stub.c
blob06064b9a8694aa8e035774b952bfc8d3cc5408fb
1 /*
2 * QEMU KVM stub
4 * Copyright Red Hat, Inc. 2010
6 * Author: Paolo Bonzini <pbonzini@redhat.com>
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.
13 #include "qemu-common.h"
14 #include "hw/hw.h"
15 #include "cpu.h"
16 #include "gdbstub.h"
17 #include "kvm.h"
19 int kvm_irqchip_in_kernel(void)
21 return 0;
24 int kvm_pit_in_kernel(void)
26 return 0;
30 int kvm_init_vcpu(CPUState *env)
32 return -ENOSYS;
35 int kvm_coalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
37 return -ENOSYS;
40 int kvm_uncoalesce_mmio_region(target_phys_addr_t start, ram_addr_t size)
42 return -ENOSYS;
45 int kvm_init(void)
47 return -ENOSYS;
50 void kvm_flush_coalesced_mmio_buffer(void)
54 void kvm_cpu_synchronize_state(CPUState *env)
58 void kvm_cpu_synchronize_post_reset(CPUState *env)
62 void kvm_cpu_synchronize_post_init(CPUState *env)
66 int kvm_cpu_exec(CPUState *env)
68 abort ();
71 int kvm_has_sync_mmu(void)
73 return 0;
76 int kvm_has_many_ioeventfds(void)
78 return 0;
81 void kvm_setup_guest_memory(void *start, size_t size)
85 int kvm_update_guest_debug(CPUState *env, unsigned long reinject_trap)
87 return -ENOSYS;
90 int kvm_insert_breakpoint(CPUState *current_env, target_ulong addr,
91 target_ulong len, int type)
93 return -EINVAL;
96 int kvm_remove_breakpoint(CPUState *current_env, target_ulong addr,
97 target_ulong len, int type)
99 return -EINVAL;
102 void kvm_remove_all_breakpoints(CPUState *current_env)
106 #ifndef _WIN32
107 int kvm_set_signal_mask(CPUState *env, const sigset_t *sigset)
109 abort();
111 #endif
113 int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign)
115 return -ENOSYS;
118 int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign)
120 return -ENOSYS;
123 int kvm_on_sigbus_vcpu(CPUState *env, int code, void *addr)
125 return 1;
128 int kvm_on_sigbus(int code, void *addr)
130 return 1;