diff options
author | Jeff Mahoney <jeffm@suse.com> | 2005-06-29 18:53:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-30 00:02:04 -0400 |
commit | 2949ccf9379678df66ecf2ca70ed4656159eacdd (patch) | |
tree | 7301e85e11e1f8813d08a7dd866969f22acd4151 /fs/reiserfs | |
parent | 869eb76e7b60ebd8f87a358b72e97fa0aef1d1f5 (diff) |
[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>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r-- | fs/reiserfs/super.c | 2 |
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 ) | |||
1066 | reiserfs_warning(s, "reiserfs: cannot support attributes until flag is set in super-block" ); | 1066 | reiserfs_warning(s, "reiserfs: cannot support attributes until flag is set in super-block" ); |
1067 | REISERFS_SB(s) -> s_mount_opt &= ~ ( 1 << REISERFS_ATTRS ); | 1067 | REISERFS_SB(s) -> s_mount_opt &= ~ ( 1 << REISERFS_ATTRS ); |
1068 | } | 1068 | } |
1069 | } else if (le32_to_cpu( rs -> s_flags ) & reiserfs_attrs_cleared) { | ||
1070 | REISERFS_SB(s)->s_mount_opt |= REISERFS_ATTRS; | ||
1069 | } | 1071 | } |
1070 | } | 1072 | } |
1071 | 1073 | ||