commit | ad0d4083e65d9f223275adbfb9a7927e2120dc6c | [log] [tgz] |
---|---|---|
author | Jens Axboe <jens.axboe@oracle.com> | Tue Oct 23 09:27:05 2007 +0200 |
committer | Jens Axboe <jens.axboe@oracle.com> | Tue Oct 23 09:27:05 2007 +0200 |
tree | b07eca59562b5839aa30fc7924763a685112ca2e | |
parent | 73fc4f0d2ce4a92c36b00649c58e0a068a6cdfa4 [diff] |
[BLOCK] Don't clear sg_dma_len/addr() in blk_rq_map_sg() It's not a proper lvalue on all archs. Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 61c2e39..fb8fb88 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c
@@ -1354,8 +1354,6 @@ else sg = sg_next(sg); - sg_dma_len(sg) = 0; - sg_dma_address(sg) = 0; sg_set_page(sg, bvec->bv_page); sg->length = nbytes; sg->offset = bvec->bv_offset;