]> xenbits.xen.org Git - xenclient/kernel.git/commitdiff
imported patch quiet-vfat disable-edac
authort_jeang <devnull@localhost>
Tue, 6 Jan 2009 12:06:03 +0000 (12:06 +0000)
committert_jeang <devnull@localhost>
Tue, 6 Jan 2009 12:06:03 +0000 (12:06 +0000)
fs/fat/inode.c

index bb3bee0349c76644388fc5c0e1a96ba4a3165876..d9be70d2348d3c2d0b836eed075a7d2165270b94 100644 (file)
@@ -1186,20 +1186,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;
        }