btrfs-progs: add supported attr flags to btrfs(5)
The chattr(1) manpage suffers from the same problems mount(1) had: many options listed, not kept up to date for various filesystems. I've submitted a manpage update for chattr(1) which says to refer to filesystem-specific manpages for supported attributes; this patch updates btrfs(5) to list the attributes supported by btrfs. Signed-off-by: Eric Sandeen <sandeen@redhat.com> [added some asciidoc markups, adjusted formatting] Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
parent
18e2663db3
commit
70e3a85e9e
|
@ -3,7 +3,7 @@ btrfs-mount(5)
|
|||
|
||||
NAME
|
||||
----
|
||||
btrfs-mount - mount options for the btrfs filesystem
|
||||
btrfs-mount - mount options and supported file attributes for the btrfs filesystem
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
|
@ -179,8 +179,33 @@ MOUNT OPTIONS
|
|||
*user_subvol_rm_allowed*::
|
||||
Allow subvolumes to be deleted by a non-root user. Use with caution.
|
||||
|
||||
FILE ATTRIBUTES
|
||||
---------------
|
||||
The btrfs filesystem supports setting the following file
|
||||
attributes the `chattr`(1) utility
|
||||
|
||||
*a* -- append only
|
||||
|
||||
*A* -- no atime updates
|
||||
|
||||
*c* -- compressed
|
||||
|
||||
*C* -- no copy on write
|
||||
|
||||
*d* -- no dump
|
||||
|
||||
*D* -- synchronous directory updates
|
||||
|
||||
*i* -- immutable
|
||||
|
||||
*S* -- synchronous updates
|
||||
|
||||
For descriptions of these attribute flags, please refer to the
|
||||
`chattr`(1) man page.
|
||||
|
||||
SEE ALSO
|
||||
--------
|
||||
`chattr`(1),
|
||||
`mkfs.btrfs`(8),
|
||||
`mount`(8),
|
||||
`btrfs`(8)
|
||||
|
|
Loading…
Reference in New Issue