Deleted Added
full compact
vmm.h (347409) vmm.h (347416)
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 347409 2019-05-09 22:31:47Z jhb $
26 * $FreeBSD: stable/11/sys/amd64/include/vmm.h 347416 2019-05-09 23:57:02Z jhb $
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
27 */
28
29#ifndef _VMM_H_
30#define _VMM_H_
31
32#include <sys/sdt.h>
32#include <x86/segments.h>
33
33#include <x86/segments.h>
34
35#ifdef _KERNEL
36SDT_PROVIDER_DECLARE(vmm);
37#endif
38
34enum vm_suspend_how {
35 VM_SUSPEND_NONE,
36 VM_SUSPEND_RESET,
37 VM_SUSPEND_POWEROFF,
38 VM_SUSPEND_HALT,
39 VM_SUSPEND_TRIPLEFAULT,
40 VM_SUSPEND_LAST
41};

--- 641 unchanged lines hidden ---
39enum vm_suspend_how {
40 VM_SUSPEND_NONE,
41 VM_SUSPEND_RESET,
42 VM_SUSPEND_POWEROFF,
43 VM_SUSPEND_HALT,
44 VM_SUSPEND_TRIPLEFAULT,
45 VM_SUSPEND_LAST
46};

--- 641 unchanged lines hidden ---