On Sat, Jun 14, 2008 at 07:29:21PM +0200, Bartlomiej Zolnierkiewicz wrote: > On Thursday 12 June 2008, Borislav Petkov wrote: > > ... into cdrom_handle_failed_pc_req(). > > I actually think that we should try to unite pc/fs error handling as much > as possible as it shouldn't really matter if i.e. READ command came through > fs or pc request - the error handling w.r.t. hardware should be the same > (at the moment it is not always the case - the most blatant example of this > disrepancy is handling of NOT_READY sense key for WRITE commands). > > When I was suggesting factoring out error handling I rather meant moving > out _everything_ after OK_STAT() (sorry for the confusion). On the second > thought we may do it in even simpler way by moving: > > ... > /* check for errors */ > stat = ide_read_status(drive); > > if (stat_ret) > *stat_ret = stat; > > if (OK_STAT(stat, good_stat, BAD_R_STAT)) > return 0; > ... > > to cdrom_decode_status() users and passing as an argument 'stat' instead > of 'good_stat' and 'stat_ret'. > > Therefore I skipped this patch (and also patch #4) for now. Hi Bart, here's a first attempt at that. These are only RFC of nature, please take a look when there's time. They've been lightly tested but I'll do more later since this path is not hit that often and a special test case will be required. --- From: Borislav Petkov <petkovbb@xxxxxxxxx> Date: Sun, 10 Aug 2008 18:54:03 +0200 Subject: [PATCH 1/2] ide-cd: move error handling outside of cdrom_decode_status() There should be no functionality change resulting from this patch. Signed-off-by: Borislav Petkov <petkovbb@xxxxxxxxx> --- drivers/ide/ide-cd.c | 36 ++++++++++++++++++------------------ 1 files changed, 18 insertions(+), 18 deletions(-) diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index f675cee..f2c12be 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c @@ -284,20 +284,11 @@ static void ide_dump_status_no_sense(ide_drive_t *drive, const char *msg, u8 st) * 0: if the request should be continued. * 1: if the request was ended. */ -static int cdrom_decode_status(ide_drive_t *drive, int good_stat, int *stat_ret) +static int cdrom_decode_status(ide_drive_t *drive, int stat) { ide_hwif_t *hwif = drive->hwif; struct request *rq = hwif->hwgroup->rq; - int stat, err, sense_key; - - /* check for errors */ - stat = hwif->tp_ops->read_status(hwif); - - if (stat_ret) - *stat_ret = stat; - - if (OK_STAT(stat, good_stat, BAD_R_STAT)) - return 0; + int err, sense_key; /* get the IDE error register */ err = ide_read_error(drive); @@ -563,7 +554,7 @@ static ide_startstop_t cdrom_transfer_packet_command(ide_drive_t *drive, ide_handler_t *handler) { ide_hwif_t *hwif = drive->hwif; - int cmd_len; + int cmd_len, stat; struct cdrom_info *info = drive->driver_data; ide_startstop_t startstop; @@ -574,8 +565,11 @@ static ide_startstop_t cdrom_transfer_packet_command(ide_drive_t *drive, */ /* check for errors */ - if (cdrom_decode_status(drive, ATA_DRQ, NULL)) - return ide_stopped; + stat = hwif->tp_ops->read_status(hwif); + + if (!OK_STAT(stat, ATA_DRQ, BAD_R_STAT)) + if (cdrom_decode_status(drive, stat)) + return ide_stopped; /* ok, next interrupt will be DMA interrupt */ if (info->dma) @@ -739,8 +733,11 @@ static ide_startstop_t cdrom_seek_intr(ide_drive_t *drive) int stat; static int retry = 10; - if (cdrom_decode_status(drive, 0, &stat)) - return ide_stopped; + stat = drive->hwif->tp_ops->read_status(drive->hwif); + + if (!OK_STAT(stat, 0, BAD_R_STAT)) + if (cdrom_decode_status(drive, stat)) + return ide_stopped; drive->atapi_flags |= IDE_AFLAG_SEEKING; @@ -917,8 +914,11 @@ static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive) } } - if (cdrom_decode_status(drive, 0, &stat)) - return ide_stopped; + stat = hwif->tp_ops->read_status(hwif); + + if (!OK_STAT(stat, 0, BAD_R_STAT)) + if (cdrom_decode_status(drive, stat)) + return ide_stopped; /* using dma, transfer is complete now */ if (dma) { -- 1.5.5.4 -- Regards/Gruss, Boris. -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html