View | Details | Raw Unified
Collapse All | Expand All

(-) a/doc/fsck.reiser4.8 (-1 / +5 lines)
 Lines 54-60    Link Here 
ignored.
ignored.
.SH PLUGIN OPTIONS
.SH PLUGIN OPTIONS
.TP
.TP
.B -p, --print-profile
.B --print-profile
prints the plugin profile. This is the set of default plugins used for all
prints the plugin profile. This is the set of default plugins used for all
parts of a filesystem -- format, nodes, files, directories, hashes, etc. If
parts of a filesystem -- format, nodes, files, directories, hashes, etc. If
--override is specified, then prints modified plugins.
--override is specified, then prints modified plugins.
 Lines 82-87    Link Here 
.B -f, --force
.B -f, --force
forces fsck to use whole disk, not block device or mounted partition.
forces fsck to use whole disk, not block device or mounted partition.
.TP
.TP
.B -p, --preen
automatically repair the filesystem. We do this by default, but need to
include the option so we're compatible with other fsck tools.
.TP
.B -c, --cache N
.B -c, --cache N
tunes number of nodes in the libreiser4 tree buffer cache
tunes number of nodes in the libreiser4 tree buffer cache
.RS
.RS
(-) a/progs/fsck/fsck.c (-2 / +4 lines)
 Lines 28-34    Link Here 
		"  -q, --quiet                   supresses gauges\n"
		"  -q, --quiet                   supresses gauges\n"
		"  -r                            ignored\n"
		"  -r                            ignored\n"
		"Plugins options:\n"
		"Plugins options:\n"
		"  -p, --print-profile           prints the plugin profile.\n"
		"  --print-profile               prints the plugin profile.\n"
		"  -l, --print-plugins           prints all known plugins.\n"
		"  -l, --print-plugins           prints all known plugins.\n"
		"  -o, --override TYPE=PLUGIN    overrides the default plugin of the type\n"
		"  -o, --override TYPE=PLUGIN    overrides the default plugin of the type\n"
	        "                                \"TYPE\" by the plugin \"PLUGIN\" in the\n"
	        "                                \"TYPE\" by the plugin \"PLUGIN\" in the\n"
 Lines 39-44    Link Here 
		"  -y, --yes                     assumes an answer 'yes' to all questions.\n"
		"  -y, --yes                     assumes an answer 'yes' to all questions.\n"
		"  -f, --force                   makes fsck to use whole disk, not block\n"
		"  -f, --force                   makes fsck to use whole disk, not block\n"
		"                                device or mounted partition.\n"
		"                                device or mounted partition.\n"
		"  -p, --preen                   automatically repiar the filesysem.\n"
		"  -c, --cache N                 number of nodes in tree buffer cache\n");
		"  -c, --cache N                 number of nodes in tree buffer cache\n");
}
}
 Lines 140-145    Link Here 
		{"no-log", no_argument, NULL, 'n'},
		{"no-log", no_argument, NULL, 'n'},
		{"auto", no_argument, NULL, 'a'},
		{"auto", no_argument, NULL, 'a'},
		{"force", no_argument, NULL, 'f'},
		{"force", no_argument, NULL, 'f'},
		{"preen", no_argument, NULL, 'p'},
		{"cache", required_argument, 0, 'c'},
		{"cache", required_argument, 0, 'c'},
		{"override", required_argument, NULL, 'o'},
		{"override", required_argument, NULL, 'o'},
		/* Fsck hidden options. */
		/* Fsck hidden options. */
 Lines 227-233    Link Here 
			mode = RM_SHOW_PLUG;
			mode = RM_SHOW_PLUG;
			break;
			break;
		case 'p':
		case 'p':
			mode = RM_SHOW_PARM;
			/* We preen by default */
			break;
			break;
		case 'o':
		case 'o':
			aal_strncat(override, optarg, aal_strlen(optarg));
			aal_strncat(override, optarg, aal_strlen(optarg));