Re: [patch 3/6] ide: always kill the whole request on error

From: Joe Perches
Date: Tue Jun 23 2009 - 19:38:20 EST


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?


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/