Deleted Added
full compact
vmm.h (263211) vmm.h (263744)
1/*-
2 * Copyright (c) 2011 NetApp, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2011 NetApp, Inc.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/amd64/include/vmm.h 263211 2014-03-15 23:09:34Z tychon $
26 * $FreeBSD: head/sys/amd64/include/vmm.h 263744 2014-03-25 19:20:34Z tychon $
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32#ifdef _KERNEL
33
34#define VM_MAX_NAMELEN 32

--- 151 unchanged lines hidden (view full) ---

186}
187
188void *vcpu_stats(struct vm *vm, int vcpu);
189void vcpu_notify_event(struct vm *vm, int vcpuid, bool lapic_intr);
190struct vmspace *vm_get_vmspace(struct vm *vm);
191int vm_assign_pptdev(struct vm *vm, int bus, int slot, int func);
192int vm_unassign_pptdev(struct vm *vm, int bus, int slot, int func);
193struct vatpic *vm_atpic(struct vm *vm);
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32#ifdef _KERNEL
33
34#define VM_MAX_NAMELEN 32

--- 151 unchanged lines hidden (view full) ---

186}
187
188void *vcpu_stats(struct vm *vm, int vcpu);
189void vcpu_notify_event(struct vm *vm, int vcpuid, bool lapic_intr);
190struct vmspace *vm_get_vmspace(struct vm *vm);
191int vm_assign_pptdev(struct vm *vm, int bus, int slot, int func);
192int vm_unassign_pptdev(struct vm *vm, int bus, int slot, int func);
193struct vatpic *vm_atpic(struct vm *vm);
194struct vatpit *vm_atpit(struct vm *vm);
194
195/*
196 * Inject exception 'vme' into the guest vcpu. This function returns 0 on
197 * success and non-zero on failure.
198 *
199 * Wrapper functions like 'vm_inject_gp()' should be preferred to calling
200 * this function directly because they enforce the trap-like or fault-like
201 * behavior of an exception.

--- 176 unchanged lines hidden ---
195
196/*
197 * Inject exception 'vme' into the guest vcpu. This function returns 0 on
198 * success and non-zero on failure.
199 *
200 * Wrapper functions like 'vm_inject_gp()' should be preferred to calling
201 * this function directly because they enforce the trap-like or fault-like
202 * behavior of an exception.

--- 176 unchanged lines hidden ---