Blame SOURCES/e2fsprogs-1.42.9-ext4-manpage-add-attrs.patch

98901c
commit e92beaac1017b5cc6a73ddb88aeab7b33f714e8b
98901c
Author: Eric Sandeen <sandeen@redhat.com>
98901c
Date:   Mon Aug 25 21:02:18 2014 -0400
98901c
98901c
    e2fsprogs: add supported file attributes to ext4.5 manpage
98901c
    
98901c
    The chattr(1) manpage now refers users to filesystem-specific
98901c
    manpages for details on supported attributes, so add those to
98901c
    ext4.5.
98901c
    
98901c
    I've left out oddities like being able to set the compressed
98901c
    or no-tail-packing flags, or setting data journaling on ext2.
98901c
    
98901c
    That behavior seems like a bug, not a feature.
98901c
    
98901c
    Signed-off-by: Eric Sandeen <sandeen@redhat.com>
98901c
    Signed-off-by: Theodore Ts'o <tytso@mit.edu>
98901c
98901c
diff --git a/misc/ext4.5.in b/misc/ext4.5.in
98901c
index 9112b3d..a862a34 100644
98901c
--- a/misc/ext4.5.in
98901c
+++ b/misc/ext4.5.in
98901c
@@ -608,6 +608,37 @@ seriously cramp the system's style.)
98901c
 .B i_version
98901c
 Enable 64-bit inode version support. This option is off by default.
98901c
 
98901c
+.SH FILE ATTRIBUTES
98901c
+The ext2, ext3, and ext4 filesystems support setting the following file
98901c
+attributes on Linux systems using the
98901c
+.BR chattr (1)
98901c
+utility:
98901c
+.sp
98901c
+.BR a " - append only"
98901c
+.sp
98901c
+.BR A " - no atime updates"
98901c
+.sp
98901c
+.BR d " - no dump"
98901c
+.sp
98901c
+.BR D " - synchronous directory updates"
98901c
+.sp
98901c
+.BR i " - immutable"
98901c
+.sp
98901c
+.BR S " - synchronous updates"
98901c
+.sp
98901c
+.BR u " - undeletable"
98901c
+.sp
98901c
+In addition, the ext3 and ext4 filesystems support the following flag:
98901c
+.sp
98901c
+.BR j " - data journaling"
98901c
+.sp
98901c
+Finally, the ext4 filesystem also supports the following flag:
98901c
+.sp
98901c
+.BR e " - extents format"
98901c
+.sp
98901c
+For descriptions of these attribute flags, please refer to the
98901c
+.BR chattr (1)
98901c
+man page.
98901c
 .SH SEE ALSO
98901c
 .BR mke2fs (8),
98901c
 .BR mke2fs.conf (5),
98901c
@@ -615,4 +646,5 @@ Enable 64-bit inode version support. This option is off by default.
98901c
 .BR dumpe2fs (8),
98901c
 .BR tune2fs (8),
98901c
 .BR debugfs (8),
98901c
-.BR mount (8)
98901c
+.BR mount (8),
98901c
+.BR chattr (1)