The patch titled fix-cdrom-being-confused-on-using-kdump-tweaks has been removed from the -mm tree. Its filename is fix-cdrom-being-confused-on-using-kdump-tweaks.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Andrew Morton <akpm@xxxxxxxx> - coding style cleanups - add a printk so that we know when it triggered - What does "0xEF" mean? Should it be ~SERVICE_STAT, or what? Cc: Rachita Kothiyal <rachita@xxxxxxxxxx> Cc: Jens Axboe <axboe@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ide/ide-cd.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff -puN drivers/ide/ide-cd.c~fix-cdrom-being-confused-on-using-kdump-tweaks drivers/ide/ide-cd.c --- devel/drivers/ide/ide-cd.c~fix-cdrom-being-confused-on-using-kdump-tweaks 2006-04-07 21:50:04.000000000 -0700 +++ devel-akpm/drivers/ide/ide-cd.c 2006-04-07 21:50:04.000000000 -0700 @@ -1450,9 +1450,11 @@ static ide_startstop_t cdrom_pc_intr (id rq->sense_len += thislen; } else { confused: - if (( stat & DRQ_STAT) == DRQ_STAT) { + if ((stat & DRQ_STAT) == DRQ_STAT) { /* DRQ is set. Interrupt not welcome now. Ignore */ - HWIF(drive)->OUTB((stat & 0xEF), IDE_STATUS_REG); + printk(KERN_INFO "%s: deconfusing drive\n", + __FUNCTION__); + HWIF(drive)->OUTB(stat & 0xEF, IDE_STATUS_REG); return ide_stopped; } printk (KERN_ERR "%s: cdrom_pc_intr: The drive " _ Patches currently in -mm which might be from akpm@xxxxxxxx are oom-kill-mm-locking-fix.patch page_allocc-buddy-handling-cleanup.patch fix-cdrom-being-confused-on-using-kdump.patch fix-cdrom-being-confused-on-using-kdump-tweaks.patch mmput-might-sleep.patch tpm-use-clear_bit-fix.patch tpm-use-clear_bit-fix-fix.patch tpm-use-clear_bit-fix-fix-fix-fix.patch hangcheck-remove-monotomic_clock-on-x86.patch pi-futex-futex-code-cleanups-fix.patch reiser4.patch kgdb-core-lite-add-reboot-command.patch kgdb-8250-fix.patch nr_blockdev_pages-in_interrupt-warning.patch device-suspend-debug.patch revert-tty-buffering-comment-out-debug-code.patch slab-leaks3-default-y.patch x86-kmap_atomic-debugging.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