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

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