On Thu Apr 18, 2002 at 03:13:35PM +0200, Dr. Death wrote: > Problem: > > I use SuSE Linux 7.2 and when I create md5sums from damaged files on a > CD, the WHOLE system freezes or is ugly slow untill md5 has passed the > damaged part of the file ! This should help somewhat. Currently, ide-cd.c retries ERROR_MAX (8) times when it sees an error. But ide.c is also retrying ERROR_MAX times when _it_ sees an error, and does a bus reset after evey 4 failures. So for each bad sector, you get 64 retries (with typical timouts of 7 seconds each) plus 16 bus resets per bad sector. The funny thing is though, we knew after the first read that we had an uncorrectable medium error. Try this patch vs 2.4.19-pre7 --- linux/drivers/ide/ide-cd.c.orig Tue Apr 9 06:59:56 2002 +++ linux/drivers/ide/ide-cd.c Tue Apr 9 07:04:59 2002 @@ -657,6 +657,11 @@ request or data protect error.*/ ide_dump_status (drive, "command error", stat); cdrom_end_request (0, drive); + } else if (sense_key == MEDIUM_ERROR) { + /* No point in re-trying a zillion times on a bad + * sector... If we got here the error is not correctable */ + ide_dump_status (drive, "media error (bad sector)", stat); + cdrom_end_request (0, drive); } else if ((err & ~ABRT_ERR) != 0) { /* Go to the default handler for other errors. */ -Erik -- Erik B. Andersen http://codepoet-consulting.com/ --This message was written using 73% post-consumer electrons-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/