The patch titled ide-io: increase timeout value to allow for slave wakeup has been removed from the -mm tree. Its filename is ide-io-increase-timeout-value-to-allow-for-slave-wakeup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ide-io: increase timeout value to allow for slave wakeup 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. Acked-by: 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 file 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 --- a/drivers/ide/ide-io.c~ide-io-increase-timeout-value-to-allow-for-slave-wakeup +++ a/drivers/ide/ide-io.c @@ -959,7 +959,7 @@ static void ide_check_pm_state(ide_drive 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 origin.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