From: Joe Perches <joe@xxxxxxxxxxx> Date: Tue, 23 Jun 2009 16:37:54 -0700 > On Tue, 2009-06-23 at 16:19 -0700, David Miller wrote: >> From: Bartlomiej Zolnierkiewicz <bzolnier@xxxxxxxxx> >> Date: Tue, 23 Jun 2009 23:27:27 +0200 >> > From: Bartlomiej Zolnierkiewicz <bzolnier@xxxxxxxxx> >> > Subject: [PATCH] ide: always kill the whole request on error >> > --- a/drivers/ide/ide-eh.c >> > +++ b/drivers/ide/ide-eh.c >> > @@ -149,7 +149,7 @@ static inline void ide_complete_drive_re >> > if (rq && blk_special_request(rq) && rq->cmd[0] == REQ_DRIVE_RESET) { >> > if (err <= 0 && rq->errors == 0) >> > rq->errors = -EIO; >> > - ide_complete_rq(drive, err ? err : 0, ide_rq_bytes(rq)); >> > + ide_complete_rq(drive, err ? err : 0, blk_rq_bytes(rq)); > > Doesn't that "err ? err : 0" look odd? > Why not just err? These functions are full of surprises :-) Yes, plain 'err' should be absolutely equivalent to what's there right now. -- 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