[PATCH] UDF: Fix mounting read-write
authorPeter Osterlund <petero2@telia.com>
Thu, 5 Oct 2006 19:17:50 +0000 (21:17 +0200)
committerLinus Torvalds <torvalds@g5.osdl.org>
Thu, 5 Oct 2006 23:18:55 +0000 (16:18 -0700)
The UDF filesystem can't be mounted in read-write mode any more,
because of forgotten braces.

Signed-off-by: Peter Osterlund <petero2@telia.com>
[ Duh! ]
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
fs/udf/super.c

index 1d3b5d2..1aea6a4 100644 (file)
@@ -1621,9 +1621,10 @@ static int udf_fill_super(struct super_block *sb, void *options, int silent)
                goto error_out;
        }
 
-       if (UDF_SB_PARTFLAGS(sb, UDF_SB_PARTITION(sb)) & UDF_PART_FLAG_READ_ONLY)
+       if (UDF_SB_PARTFLAGS(sb, UDF_SB_PARTITION(sb)) & UDF_PART_FLAG_READ_ONLY) {
                printk("UDF-fs: Partition marked readonly; forcing readonly mount\n");
                sb->s_flags |= MS_RDONLY;
+       }
 
        if ( udf_find_fileset(sb, &fileset, &rootdir) )
        {