Hi Tejun, On Thu, Apr 16, 2009 at 03:07:09PM +0900, Tejun Heo wrote: [..] > There was another problem. If we use blk_rq_map_kern() the failed rq > must be finished after the sense rq is finished because that's when > the bio is copied back if it was copied. Before sense_rq completion, > the sense buffer doesn't contain any valid data. Well, as an idea, we could just postpone the completion of the failed rq in: if (sense && uptodate) ide_cd_complete_failed_rq(drive, rq); and put that just after ide_complete_rq(drive, uptodate ? 0 : -EIO, nsectors << 9); line in cdrom_newpc_intr(). This way, we can copy back the sense data safely and then kill the rq. The only problem I fear with changes like that is that later some subtle interactions come about with some device which shouldn't normally happen. This is old code, you know, which still needs lots of scrubbing. It's like walking on a minefield :). Thanks. -- Regards/Gruss, Boris. -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html