Deleted Added
full compact
geom_mountver.c (212554) geom_mountver.c (283074)
1/*-
2 * Copyright (c) 2010 Edward Tomasz Napierala <trasz@FreeBSD.org>
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

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

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
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2010 Edward Tomasz Napierala <trasz@FreeBSD.org>
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

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

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
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sbin/geom/class/mountver/geom_mountver.c 212554 2010-09-13 13:48:18Z pjd $");
28__FBSDID("$FreeBSD: head/sbin/geom/class/mountver/geom_mountver.c 283074 2015-05-18 19:37:55Z allanjude $");
29
30#include <stdio.h>
31#include <stdint.h>
32#include <libgeom.h>
33#include <geom/mountver/g_mountver.h>
34
35#include "core/geom.h"
36
37
38uint32_t lib_version = G_LIB_VERSION;
39uint32_t version = G_MOUNTVER_VERSION;
40
41struct g_command class_commands[] = {
42 { "create", G_FLAG_VERBOSE | G_FLAG_LOADKLD, NULL,
43 {
44 G_OPT_SENTINEL
45 },
29
30#include <stdio.h>
31#include <stdint.h>
32#include <libgeom.h>
33#include <geom/mountver/g_mountver.h>
34
35#include "core/geom.h"
36
37
38uint32_t lib_version = G_LIB_VERSION;
39uint32_t version = G_MOUNTVER_VERSION;
40
41struct g_command class_commands[] = {
42 { "create", G_FLAG_VERBOSE | G_FLAG_LOADKLD, NULL,
43 {
44 G_OPT_SENTINEL
45 },
46 "[-v] dev ..."
46 "[-v] prov ..."
47 },
48 { "destroy", G_FLAG_VERBOSE, NULL,
49 {
50 { 'f', "force", NULL, G_TYPE_BOOL },
51 G_OPT_SENTINEL
52 },
47 },
48 { "destroy", G_FLAG_VERBOSE, NULL,
49 {
50 { 'f', "force", NULL, G_TYPE_BOOL },
51 G_OPT_SENTINEL
52 },
53 "[-fv] prov ..."
53 "[-fv] name"
54 },
55 G_CMD_SENTINEL
56};
54 },
55 G_CMD_SENTINEL
56};