]> xenbits.xensource.com Git - people/ssmith/nc2-2.6.27.git/commitdiff
Index: tmp-ca4382/fs/fat/inode.c
authorSteven Smith <ssmith@weybridge.uk.xensource.com>
Tue, 30 Jun 2009 11:55:48 +0000 (12:55 +0100)
committerSteven Smith <ssmith@weybridge.uk.xensource.com>
Tue, 30 Jun 2009 11:55:48 +0000 (12:55 +0100)
===================================================================

fs/fat/inode.c

index 80ff3381fa218950b7753db8ac907144f7579e4f..3a907f991ec856835dfa88d61c78f1e218be0016 100644 (file)
@@ -1209,20 +1209,20 @@ int fat_fill_super(struct super_block *sb, void *data, int silent,
        sb_min_blocksize(sb, 512);
        bh = sb_bread(sb, 0);
        if (bh == NULL) {
-               printk(KERN_ERR "FAT: unable to read boot sector\n");
+               printk(KERN_NOTICE "FAT: unable to read boot sector\n");
                goto out_fail;
        }
 
        b = (struct fat_boot_sector *) bh->b_data;
        if (!b->reserved) {
                if (!silent)
-                       printk(KERN_ERR "FAT: bogus number of reserved sectors\n");
+                       printk(KERN_NOTICE "FAT: bogus number of reserved sectors\n");
                brelse(bh);
                goto out_invalid;
        }
        if (!b->fats) {
                if (!silent)
-                       printk(KERN_ERR "FAT: bogus number of FAT structure\n");
+                       printk(KERN_NOTICE "FAT: bogus number of FAT structure\n");
                brelse(bh);
                goto out_invalid;
        }