Deleted Added
full compact
vmcs.h (271888) vmcs.h (276098)
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/vmm/intel/vmcs.h 271888 2014-09-20 02:35:21Z neel $
26 * $FreeBSD: head/sys/amd64/vmm/intel/vmcs.h 276098 2014-12-23 02:14:49Z neel $
27 */
28
29#ifndef _VMCS_H_
30#define _VMCS_H_
31
32#ifdef _KERNEL
33struct vmcs {
34 uint32_t identifier;

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

316#define EXIT_REASON_RDMSR 31
317#define EXIT_REASON_WRMSR 32
318#define EXIT_REASON_INVAL_VMCS 33
319#define EXIT_REASON_INVAL_MSR 34
320#define EXIT_REASON_MWAIT 36
321#define EXIT_REASON_MTF 37
322#define EXIT_REASON_MONITOR 39
323#define EXIT_REASON_PAUSE 40
27 */
28
29#ifndef _VMCS_H_
30#define _VMCS_H_
31
32#ifdef _KERNEL
33struct vmcs {
34 uint32_t identifier;

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

316#define EXIT_REASON_RDMSR 31
317#define EXIT_REASON_WRMSR 32
318#define EXIT_REASON_INVAL_VMCS 33
319#define EXIT_REASON_INVAL_MSR 34
320#define EXIT_REASON_MWAIT 36
321#define EXIT_REASON_MTF 37
322#define EXIT_REASON_MONITOR 39
323#define EXIT_REASON_PAUSE 40
324#define EXIT_REASON_MCE 41
324#define EXIT_REASON_MCE_DURING_ENTRY 41
325#define EXIT_REASON_TPR 43
326#define EXIT_REASON_APIC_ACCESS 44
327#define EXIT_REASON_VIRTUALIZED_EOI 45
328#define EXIT_REASON_GDTR_IDTR 46
329#define EXIT_REASON_LDTR_TR 47
330#define EXIT_REASON_EPT_FAULT 48
331#define EXIT_REASON_EPT_MISCONFIG 49
332#define EXIT_REASON_INVEPT 50

--- 69 unchanged lines hidden ---
325#define EXIT_REASON_TPR 43
326#define EXIT_REASON_APIC_ACCESS 44
327#define EXIT_REASON_VIRTUALIZED_EOI 45
328#define EXIT_REASON_GDTR_IDTR 46
329#define EXIT_REASON_LDTR_TR 47
330#define EXIT_REASON_EPT_FAULT 48
331#define EXIT_REASON_EPT_MISCONFIG 49
332#define EXIT_REASON_INVEPT 50

--- 69 unchanged lines hidden ---