--- zzzz-none-000/linux-2.4.17/fs/fat/cache.c 2001-10-12 20:48:42.000000000 +0000 +++ sangam-fb-401/linux-2.4.17/fs/fat/cache.c 2005-04-08 07:24:30.000000000 +0000 @@ -14,6 +14,7 @@ #include #include #include +#include #if 0 # define PRINTK(x) printk x @@ -55,7 +56,13 @@ } b = MSDOS_SB(sb)->fat_start + (first >> sb->s_blocksize_bits); if (!(bh = fat_bread(sb, b))) { - printk("bread in fat_access failed\n"); + /* + * =OS= 20050408: + * + * Limit the number of messages... watchdog is watching me!!! + * + * printk("bread in fat_access failed\n"); + */ return 0; } if ((first >> sb->s_blocksize_bits) == (last >> sb->s_blocksize_bits)) { @@ -63,7 +70,13 @@ } else { if (!(bh2 = fat_bread(sb, b+1))) { fat_brelse(sb, bh); - printk("2nd bread in fat_access failed\n"); + /* + * =OS= 20050408: + * + * Limit the number of messages... watchdog is watching me!!! + * + * printk("2nd bread in fat_access failed\n"); + */ return 0; } }