The patch titled ide-io: increase timeout value to allow for slave wakeup has been added to the -mm tree. Its filename is ide-io-increase-timeout-value-to-allow-for-slave-wakeup.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: Al Boldi <a1426z@xxxxxxxxx> During an STR resume cycle, the ide master disk times-out when there is also a slave present (especially CD). Increasing the timeout in ide-io from 10,000 to 100,000 fixes this problem. Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@xxxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ide/ide-io.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/ide/ide-io.c~ide-io-increase-timeout-value-to-allow-for-slave-wakeup drivers/ide/ide-io.c --- devel/drivers/ide/ide-io.c~ide-io-increase-timeout-value-to-allow-for-slave-wakeup 2006-04-23 16:19:26.000000000 -0700 +++ devel-akpm/drivers/ide/ide-io.c 2006-04-23 16:19:26.000000000 -0700 @@ -931,7 +931,7 @@ static ide_startstop_t start_request (id printk(KERN_WARNING "%s: bus not ready on wakeup\n", drive->name); SELECT_DRIVE(drive); HWIF(drive)->OUTB(8, HWIF(drive)->io_ports[IDE_CONTROL_OFFSET]); - rc = ide_wait_not_busy(HWIF(drive), 10000); + rc = ide_wait_not_busy(HWIF(drive), 100000); if (rc) printk(KERN_WARNING "%s: drive not ready on wakeup\n", drive->name); } _ Patches currently in -mm which might be from a1426z@xxxxxxxxx are ide-io-increase-timeout-value-to-allow-for-slave-wakeup.patch ide-fix-ok_stat.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html