Deleted Added
full compact
vmm.h (268935) vmm.h (268972)
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: stable/10/sys/amd64/include/vmm.h 268935 2014-07-21 02:39:17Z jhb $
26 * $FreeBSD: stable/10/sys/amd64/include/vmm.h 268972 2014-07-22 03:14:37Z jhb $
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32enum vm_suspend_how {
33 VM_SUSPEND_NONE,
34 VM_SUSPEND_RESET,

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

296};
297
298enum x2apic_state {
299 X2APIC_DISABLED,
300 X2APIC_ENABLED,
301 X2APIC_STATE_LAST
302};
303
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32enum vm_suspend_how {
33 VM_SUSPEND_NONE,
34 VM_SUSPEND_RESET,

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

296};
297
298enum x2apic_state {
299 X2APIC_DISABLED,
300 X2APIC_ENABLED,
301 X2APIC_STATE_LAST
302};
303
304enum vm_intr_trigger {
305 EDGE_TRIGGER,
306 LEVEL_TRIGGER
307};
308
304/*
305 * The 'access' field has the format specified in Table 21-2 of the Intel
306 * Architecture Manual vol 3b.
307 *
308 * XXX The contents of the 'access' field are architecturally defined except
309 * bit 16 - Segment Unusable.
310 */
311struct seg_desc {

--- 89 unchanged lines hidden ---
309/*
310 * The 'access' field has the format specified in Table 21-2 of the Intel
311 * Architecture Manual vol 3b.
312 *
313 * XXX The contents of the 'access' field are architecturally defined except
314 * bit 16 - Segment Unusable.
315 */
316struct seg_desc {

--- 89 unchanged lines hidden ---