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

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