Btrfs-progs: fix wrong manpage of defrag command
authorLiu Bo <bo.li.liu@oracle.com>
Thu, 17 Jul 2014 10:46:01 +0000 (18:46 +0800)
committerDavid Sterba <dsterba@suse.cz>
Fri, 22 Aug 2014 13:07:02 +0000 (15:07 +0200)
commitb2d0e10d491f447cd2888e4af44fad9d442e524d
treeb7f9df2b28f88323489b86b08448239b32b4a26d
parentf1672e50c7f73cbdb1d9817e126c41a3db6d93ce
Btrfs-progs: fix wrong manpage of defrag command

'btrfs filesystem defrag' has an option '-t', whose manpage says

"Any extent bigger than threshold given by -t option, will be
considered already defragged. Use 0 to take the kernel default, and
use 1 to say every single extent must be rewritten."

Here 'use 0' still works, it refers to the default value(256K), however,
'use 1' is an obvious typo, it should be -1, which means the largest value
it can be.

Right now, we use parse_size() which no more allow value '-1', so in
order to keep the manpage correct, this updates it to only keep value '0'.

If you want to make sure every single extent is rewritten, please use a fairly
large size, say 1G.

Reported-by: Sebastian Ochmann <ochmann@informatik.uni-bonn.de>
Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.cz>
Documentation/btrfs-filesystem.txt