summaryrefslogtreecommitdiffstats
path: root/sbin/geom/class/journal
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2010-09-13 13:48:18 +0000
committerpjd <pjd@FreeBSD.org>2010-09-13 13:48:18 +0000
commit3d8ce965d3cc7199c39bd29a375291b4276bab53 (patch)
tree80fa9ced0ed4ae38bb90b62555eb33be45347414 /sbin/geom/class/journal
parent7dc7517414123c9d33d848a1cb615f3adbb59e51 (diff)
downloadFreeBSD-src-3d8ce965d3cc7199c39bd29a375291b4276bab53.zip
FreeBSD-src-3d8ce965d3cc7199c39bd29a375291b4276bab53.tar.gz
- Remove gc_argname field. It was introduced for gpart(8), but if I
understand everything correctly, we don't really need it. - Provide default numeric value as strings. This allows to simplify a lot of code. - Bump version number.
Diffstat (limited to 'sbin/geom/class/journal')
-rw-r--r--sbin/geom/class/journal/geom_journal.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/sbin/geom/class/journal/geom_journal.c b/sbin/geom/class/journal/geom_journal.c
index 3716999..b887fab 100644
--- a/sbin/geom/class/journal/geom_journal.c
+++ b/sbin/geom/class/journal/geom_journal.c
@@ -47,18 +47,16 @@ __FBSDID("$FreeBSD$");
uint32_t lib_version = G_LIB_VERSION;
uint32_t version = G_JOURNAL_VERSION;
-static intmax_t default_jsize = -1;
-
static void journal_main(struct gctl_req *req, unsigned flags);
static void journal_clear(struct gctl_req *req);
static void journal_dump(struct gctl_req *req);
static void journal_label(struct gctl_req *req);
struct g_command class_commands[] = {
- { "clear", G_FLAG_VERBOSE, journal_main, G_NULL_OPTS, NULL,
+ { "clear", G_FLAG_VERBOSE, journal_main, G_NULL_OPTS,
"[-v] prov ..."
},
- { "dump", 0, journal_main, G_NULL_OPTS, NULL,
+ { "dump", 0, journal_main, G_NULL_OPTS,
"prov ..."
},
{ "label", G_FLAG_VERBOSE, journal_main,
@@ -66,19 +64,19 @@ struct g_command class_commands[] = {
{ 'c', "checksum", NULL, G_TYPE_BOOL },
{ 'f', "force", NULL, G_TYPE_BOOL },
{ 'h', "hardcode", NULL, G_TYPE_BOOL },
- { 's', "jsize", &default_jsize, G_TYPE_NUMBER },
+ { 's', "jsize", "-1", G_TYPE_NUMBER },
G_OPT_SENTINEL
},
- NULL, "[-cfhv] [-s jsize] dataprov [jprov]"
+ "[-cfhv] [-s jsize] dataprov [jprov]"
},
{ "stop", G_FLAG_VERBOSE, NULL,
{
{ 'f', "force", NULL, G_TYPE_BOOL },
G_OPT_SENTINEL
},
- NULL, "[-fv] name ..."
+ "[-fv] name ..."
},
- { "sync", G_FLAG_VERBOSE, NULL, G_NULL_OPTS, NULL,
+ { "sync", G_FLAG_VERBOSE, NULL, G_NULL_OPTS,
"[-v]"
},
G_CMD_SENTINEL
OpenPOWER on IntegriCloud