Deleted Added
full compact
bhyvectl.c (245678) bhyvectl.c (245679)
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/usr.sbin/bhyvectl/bhyvectl.c 245678 2013-01-20 03:42:49Z neel $
26 * $FreeBSD: head/usr.sbin/bhyvectl/bhyvectl.c 245679 2013-01-20 03:47:13Z neel $
27 */
28
29#include <sys/cdefs.h>
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/usr.sbin/bhyvectl/bhyvectl.c 245678 2013-01-20 03:42:49Z neel $");
30__FBSDID("$FreeBSD: head/usr.sbin/bhyvectl/bhyvectl.c 245679 2013-01-20 03:47:13Z neel $");
31
32#include <sys/param.h>
33#include <sys/types.h>
34#include <sys/sysctl.h>
35#include <sys/errno.h>
36#include <sys/mman.h>
37
38#include <stdio.h>

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

59
60static const char *progname;
61
62static void
63usage(void)
64{
65
66 (void)fprintf(stderr,
31
32#include <sys/param.h>
33#include <sys/types.h>
34#include <sys/sysctl.h>
35#include <sys/errno.h>
36#include <sys/mman.h>
37
38#include <stdio.h>

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

59
60static const char *progname;
61
62static void
63usage(void)
64{
65
66 (void)fprintf(stderr,
67 "Usage: %s --vm=\n"
67 "Usage: %s --vm=<vmname>\n"
68 " [--cpu=<vcpu_number>]\n"
69 " [--create]\n"
70 " [--destroy]\n"
71 " [--get-all]\n"
72 " [--get-stats]\n"
73 " [--set-desc-ds]\n"
74 " [--get-desc-ds]\n"
75 " [--set-desc-es]\n"

--- 1449 unchanged lines hidden ---
68 " [--cpu=<vcpu_number>]\n"
69 " [--create]\n"
70 " [--destroy]\n"
71 " [--get-all]\n"
72 " [--get-stats]\n"
73 " [--set-desc-ds]\n"
74 " [--get-desc-ds]\n"
75 " [--set-desc-es]\n"

--- 1449 unchanged lines hidden ---