May 7 11:05:03 sarah kernel: hdc: cdrom_read_intr: data underrun (4294967292 blocks)
May 7 11:05:03 sarah kernel: end_request: I/O error, dev 16:00, sector 92
May 7 11:05:03 sarah kernel: Buffer I/O error on device ide1(22,0), logical block 22
This patch works fine for me. Please check it.
--- linux/drivers/ide/ide-cd.c.orig Mon May 6 12:38:01 2002
+++ linux/drivers/ide/ide-cd.c Tue May 7 16:43:51 2002
@@ -962,7 +962,7 @@
/* First, figure out if we need to bit-bucket
any of the leading sectors. */
- nskip = MIN(rq->current_nr_sectors - bio_sectors(rq->bio), sectors_to_transfer);
+ nskip = MIN((int)(rq->current_nr_sectors - bio_sectors(rq->bio)), sectors_to_transfer);
while (nskip > 0) {
/* We need to throw away a sector. */
-- Osamu Tomita E-mail: tomita@cinet.co.jp - 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/