diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2007-10-23 09:27:05 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2007-10-23 09:27:05 +0200 |
commit | ad0d4083e65d9f223275adbfb9a7927e2120dc6c (patch) | |
tree | b07eca59562b5839aa30fc7924763a685112ca2e /block | |
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>
Diffstat (limited to 'block')
-rw-r--r-- | block/ll_rw_blk.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 61c2e396f2f..fb8fb8852c3 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c @@ -1354,8 +1354,6 @@ new_segment: 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; |