Deleted Added
full compact
vmm_stat.h (270074) vmm_stat.h (284900)
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

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
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

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: stable/10/sys/amd64/vmm/vmm_stat.h 270074 2014-08-17 01:23:52Z grehan $
29 * $FreeBSD: stable/10/sys/amd64/vmm/vmm_stat.h 284900 2015-06-28 03:22:26Z neel $
30 */
31
32#ifndef _VMM_STAT_H_
33#define _VMM_STAT_H_
34
35struct vm;
36
37#define MAX_VMM_STAT_ELEMS 64 /* arbitrary */

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

152VMM_STAT_DECLARE(VMEXIT_CPUID);
153VMM_STAT_DECLARE(VMEXIT_NESTED_FAULT);
154VMM_STAT_DECLARE(VMEXIT_INST_EMUL);
155VMM_STAT_DECLARE(VMEXIT_UNKNOWN);
156VMM_STAT_DECLARE(VMEXIT_ASTPENDING);
157VMM_STAT_DECLARE(VMEXIT_USERSPACE);
158VMM_STAT_DECLARE(VMEXIT_RENDEZVOUS);
159VMM_STAT_DECLARE(VMEXIT_EXCEPTION);
30 */
31
32#ifndef _VMM_STAT_H_
33#define _VMM_STAT_H_
34
35struct vm;
36
37#define MAX_VMM_STAT_ELEMS 64 /* arbitrary */

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

152VMM_STAT_DECLARE(VMEXIT_CPUID);
153VMM_STAT_DECLARE(VMEXIT_NESTED_FAULT);
154VMM_STAT_DECLARE(VMEXIT_INST_EMUL);
155VMM_STAT_DECLARE(VMEXIT_UNKNOWN);
156VMM_STAT_DECLARE(VMEXIT_ASTPENDING);
157VMM_STAT_DECLARE(VMEXIT_USERSPACE);
158VMM_STAT_DECLARE(VMEXIT_RENDEZVOUS);
159VMM_STAT_DECLARE(VMEXIT_EXCEPTION);
160VMM_STAT_DECLARE(VMEXIT_REQIDLE);
160#endif
161#endif