btrfs-progs: clarify manpage for btrfstune seeding option
authorGui Hecheng <guihc.fnst@cn.fujitsu.com>
Wed, 21 May 2014 08:03:57 +0000 (16:03 +0800)
committerDavid Sterba <dsterba@suse.cz>
Fri, 22 Aug 2014 12:39:32 +0000 (14:39 +0200)
The btrfstune -S option accepts a positive value to enable seeding,
and a zero to disable seeding, negtive is not allowed.

Add "positive, zero, negative" sentences to btrfstune manpage.

Signed-off-by: Gui Hecheng <guihc.fnst@cn.fujitsu.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Documentation/btrfstune.txt
btrfstune.c

index 1309fb6ab99e172f5583c4ddaebd86be2797dbbf..bf44bdf75daa0ba45f34739509a02d9fca5a5cd9 100644 (file)
@@ -17,8 +17,9 @@ enable/disable some extended features for btrfs.
 OPTIONS
 -------
 -S <value>::
-Updates the seeding value, it forces a fs readonly so that you can use it to
-build other filesystems.
+Updates the seeding value.
+A positive value will enable seeding, zero will disable seeding, negtive is not allowed.
+Enable seeding forces a fs readonly so that you can use it to build other filesystems.
 -r::
 Enable extended inode refs.
 -x::
index 2c26fe9bfe2ae836f895564aca1156d865dfdb25..3f2f0cdc6fbba944a3c3415e8ebd51868671579c 100644 (file)
@@ -100,9 +100,9 @@ static int enable_skinny_metadata(struct btrfs_root *root)
 static void print_usage(void)
 {
        fprintf(stderr, "usage: btrfstune [options] device\n");
-       fprintf(stderr, "\t-S value\tenable/disable seeding\n");
+       fprintf(stderr, "\t-S value\tpositive value will enable seeding, zero to disable, negative is not allowed\n");
        fprintf(stderr, "\t-r \t\tenable extended inode refs\n");
-       fprintf(stderr, "\t-x enable skinny metadata extent refs\n");
+       fprintf(stderr, "\t-x \t\tenable skinny metadata extent refs\n");
 }
 
 int main(int argc, char *argv[])