aboutsummaryrefslogtreecommitdiffstats
path: root/fs/reiserfs
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-06-30 05:59:06 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-30 11:45:13 -0400
commitc60e81ee1cac32dae1f9bf623dcb6b3b2bde8eab (patch)
tree4dff966f5e0746592f519788d9a02283f43a63ad /fs/reiserfs
parent8cb681b9c7fff5cb35b5c05ba4f1b7e285e258fb (diff)
[PATCH] reiserfs: handle_attrs() fix
Fix a use-uninitialised bug. Cc: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/reiserfs')
-rw-r--r--fs/reiserfs/super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c
index d50a5cd860ce..4b80ab95d338 100644
--- a/fs/reiserfs/super.c
+++ b/fs/reiserfs/super.c
@@ -1053,10 +1053,9 @@ static void handle_barrier_mode(struct super_block *s, unsigned long bits) {
1053 1053
1054static void handle_attrs( struct super_block *s ) 1054static void handle_attrs( struct super_block *s )
1055{ 1055{
1056 struct reiserfs_super_block * rs; 1056 struct reiserfs_super_block * rs = SB_DISK_SUPER_BLOCK (s);
1057 1057
1058 if( reiserfs_attrs( s ) ) { 1058 if( reiserfs_attrs( s ) ) {
1059 rs = SB_DISK_SUPER_BLOCK (s);
1060 if( old_format_only(s) ) { 1059 if( old_format_only(s) ) {
1061 reiserfs_warning(s, "reiserfs: cannot support attributes on 3.5.x disk format" ); 1060 reiserfs_warning(s, "reiserfs: cannot support attributes on 3.5.x disk format" );
1062 REISERFS_SB(s) -> s_mount_opt &= ~ ( 1 << REISERFS_ATTRS ); 1061 REISERFS_SB(s) -> s_mount_opt &= ~ ( 1 << REISERFS_ATTRS );