Deleted Added
full compact
vmm.h (347416) vmm.h (347435)
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/11/sys/amd64/include/vmm.h 347416 2019-05-09 23:57:02Z jhb $
26 * $FreeBSD: stable/11/sys/amd64/include/vmm.h 347435 2019-05-10 16:32:44Z jhb $
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32#include <sys/sdt.h>
33#include <x86/segments.h>
34

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

539 VM_EXITCODE_IOAPIC_EOI,
540 VM_EXITCODE_SUSPENDED,
541 VM_EXITCODE_INOUT_STR,
542 VM_EXITCODE_TASK_SWITCH,
543 VM_EXITCODE_MONITOR,
544 VM_EXITCODE_MWAIT,
545 VM_EXITCODE_SVM,
546 VM_EXITCODE_REQIDLE,
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32#include <sys/sdt.h>
33#include <x86/segments.h>
34

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

539 VM_EXITCODE_IOAPIC_EOI,
540 VM_EXITCODE_SUSPENDED,
541 VM_EXITCODE_INOUT_STR,
542 VM_EXITCODE_TASK_SWITCH,
543 VM_EXITCODE_MONITOR,
544 VM_EXITCODE_MWAIT,
545 VM_EXITCODE_SVM,
546 VM_EXITCODE_REQIDLE,
547 VM_EXITCODE_VMINSN,
547 VM_EXITCODE_MAX
548};
549
550struct vm_inout {
551 uint16_t bytes:3; /* 1 or 2 or 4 */
552 uint16_t in:1;
553 uint16_t string:1;
554 uint16_t rep:1;

--- 133 unchanged lines hidden ---
548 VM_EXITCODE_MAX
549};
550
551struct vm_inout {
552 uint16_t bytes:3; /* 1 or 2 or 4 */
553 uint16_t in:1;
554 uint16_t string:1;
555 uint16_t rep:1;

--- 133 unchanged lines hidden ---