aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2009-06-08 23:47:10 -0400
committerJens Axboe <jens.axboe@oracle.com>2009-06-08 23:47:10 -0400
commitdbb66c4be020b01dc2f3d7c609ddb0e09d2c0af7 (patch)
treeb80ec96749fdc8f26a33496ee4593ddbcc58f6ed /block
parent172124e220f1854acc99ee394671781b8b5e2120 (diff)
block: needs to set the residual length of a bidi request
Tejun's "block: set rq->resid_len to blk_rq_bytes() on issue" patch seems to be incomplete; It doesn't set rq->resid_len to blk_rq_bytes() for a bidi request (req->next_rq). As a result, all bidi users are broken. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Acked-by: Tejun Heo <tj@kernel.org> Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block')
-rw-r--r--block/blk-core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 7ae83a1e2acf..03c5a64b6ccb 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1846,6 +1846,9 @@ void blk_start_request(struct request *req)
1846 * resid_len to full count and add the timeout handler. 1846 * resid_len to full count and add the timeout handler.
1847 */ 1847 */
1848 req->resid_len = blk_rq_bytes(req); 1848 req->resid_len = blk_rq_bytes(req);
1849 if (unlikely(blk_bidi_rq(req)))
1850 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1851
1849 blk_add_timer(req); 1852 blk_add_timer(req);
1850} 1853}
1851EXPORT_SYMBOL(blk_start_request); 1854EXPORT_SYMBOL(blk_start_request);