patch-2.3.4 linux/fs/efs/super.c
Next file: linux/fs/exec.c
Previous file: linux/fs/efs/.cvsignore
Back to the patch index
Back to the overall index
- Lines: 30
- Date:
Wed May 26 09:35:00 1999
- Orig file:
v2.3.3/linux/fs/efs/super.c
- Orig date:
Sat May 15 23:46:04 1999
diff -u --recursive --new-file v2.3.3/linux/fs/efs/super.c linux/fs/efs/super.c
@@ -119,11 +119,13 @@
if (slice == -1) {
printk(KERN_NOTICE "EFS: partition table contained no EFS partitions\n");
+#ifdef DEBUG
} else {
printk(KERN_INFO "EFS: using slice %d (type %s, offset 0x%x)\n",
slice,
(pt_entry->pt_name) ? pt_entry->pt_name : "unknown",
sblock);
+#endif
}
return(sblock);
}
@@ -178,12 +180,14 @@
bh = bread(dev, sb->fs_start + EFS_SUPER, EFS_BLOCKSIZE);
if (!bh) {
- printk(KERN_ERR "EFS: unable to read superblock\n");
+ printk(KERN_ERR "EFS: cannot read superblock\n");
goto out_no_fs_ul;
}
if (efs_validate_super(sb, (struct efs_super *) bh->b_data)) {
+#ifdef DEBUG
printk(KERN_WARNING "EFS: invalid superblock at block %u\n", sb->fs_start + EFS_SUPER);
+#endif
brelse(bh);
goto out_no_fs_ul;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)