summary refs log tree commit diff
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2005-06-29 18:53:06 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-29 21:02:04 -0700
commit2949ccf9379678df66ecf2ca70ed4656159eacdd (patch)
tree7301e85e11e1f8813d08a7dd866969f22acd4151
parent869eb76e7b60ebd8f87a358b72e97fa0aef1d1f5 (diff)
downloadlinux-2949ccf9379678df66ecf2ca70ed4656159eacdd.tar.gz
[PATCH] reiserfs: enable attrs by default if saf
The following patch enables attrs by default if the reiserfs_attrs_cleared
bit is set in the superblock.  This allows chattr-type attrs to be used
without any further action by the user.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--fs/reiserfs/super.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c
index 660aefca1fd2..d50a5cd860ce 100644
--- a/fs/reiserfs/super.c
+++ b/fs/reiserfs/super.c
@@ -1066,6 +1066,8 @@ static void handle_attrs( struct super_block *s )
 				reiserfs_warning(s, "reiserfs: cannot support attributes until flag is set in super-block" );
 				REISERFS_SB(s) -> s_mount_opt &= ~ ( 1 << REISERFS_ATTRS );
 		}
+	} else if (le32_to_cpu( rs -> s_flags ) & reiserfs_attrs_cleared) {
+		REISERFS_SB(s)->s_mount_opt |= REISERFS_ATTRS;
 	}
 }