From: Jens Axboe Date: Fri, 8 Aug 2008 09:06:45 +0000 (+0200) Subject: block: use bio_has_data() in the IO completion path X-Git-Tag: v2.6.28-rc1~733^2~128 X-Git-Url: http://ftp.safe.ca/?p=safe%2Fjmp%2Flinux-2.6;a=commitdiff_plain;h=051cc3952a8fb6fa875a4eff68d06cf42207dcf4 block: use bio_has_data() in the IO completion path Signed-off-by: Jens Axboe --- diff --git a/block/blk-core.c b/block/blk-core.c index 54e442b..b5776c1 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -1885,7 +1885,7 @@ static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes, struct request_queue *q = rq->q; unsigned long flags = 0UL; - if (blk_fs_request(rq) || blk_pc_request(rq)) { + if (bio_has_data(rq->bio)) { if (__end_that_request_first(rq, error, nr_bytes)) return 1; @@ -1943,10 +1943,9 @@ EXPORT_SYMBOL_GPL(blk_end_request); **/ int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes) { - if (blk_fs_request(rq) || blk_pc_request(rq)) { - if (__end_that_request_first(rq, error, nr_bytes)) - return 1; - } + if (bio_has_data(rq->bio) && + __end_that_request_first(rq, error, nr_bytes)) + return 1; add_disk_randomness(rq->rq_disk);