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

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