>According to the fstab(5) man page:
>
> If the sixth field is not pre-
> sent or zero, a value of zero is returned and fsck will
> assume that the filesystem does not need to be checked.
The 'nocheck' affects the kernel checking upon mount, not fsck.
It's the CHECK_STRICT/CHECK_NORMAL options you see in balloc.c and super.c
Specifically:
fs/ext2/super.c: ext2_setup_super():
if (test_opt (sb, CHECK)) {
ext2_check_blocks_bitmap (sb);
ext2_check_inodes_bitmap (sb);
}
So fstab has no bearing.
-George
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu