From: Sami Kerola Date: Sun, 18 Dec 2016 18:32:41 +0000 (+0000) Subject: fsfreeze: move filesystem support info to manual page X-Git-Tag: v2.30-rc1~332 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8d42631e31dfba5421ff09976520f10f769b3fea;p=thirdparty%2Futil-linux.git fsfreeze: move filesystem support info to manual page Include btrfs, f2fs, and nilfs to list of supported filesystems, with note the list can be incomplete. Signed-off-by: Sami Kerola --- diff --git a/sys-utils/fsfreeze.8 b/sys-utils/fsfreeze.8 index 785cdd9c8b..500d311cb5 100644 --- a/sys-utils/fsfreeze.8 +++ b/sys-utils/fsfreeze.8 @@ -61,6 +61,20 @@ Display version information and exit. .TP .BR \-h , " \-\-help" Display help text and exit. +.SH FILESYSTEM SUPPORT +This command will work only if filesystem supports has support for freezing. +List of these filesystems include (2016-12-18) +.BR btrfs , +.BR ext2/3/4 , +.BR f2fs , +.BR jfs , +.BR nilfs2 , +.BR reiserfs , +and +.BR xfs . +Previous list may be incomplete, as more filesystems get support. If in +doubt easiest way to know if a filesystem has support is create a small +loopback mount and test freezing it. .SH AUTHOR .PP Written by Hajime Taira. diff --git a/sys-utils/fsfreeze.c b/sys-utils/fsfreeze.c index a25eaff209..d837d2f398 100644 --- a/sys-utils/fsfreeze.c +++ b/sys-utils/fsfreeze.c @@ -40,7 +40,7 @@ static void __attribute__((__noreturn__)) usage(FILE *out) _(" %s [options] \n"), program_invocation_short_name); fputs(USAGE_SEPARATOR, out); - fputs(_("Suspend access to a filesystem (ext3/4, ReiserFS, JFS, XFS).\n"), out); + fputs(_("Suspend access to a filesystem.\n"), out); fputs(USAGE_OPTIONS, out); fputs(_(" -f, --freeze freeze the filesystem\n"), out);