Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ad0d4083e65d9f223275adbfb9a7927e2120dc6c
Commit:     ad0d4083e65d9f223275adbfb9a7927e2120dc6c
Parent:     73fc4f0d2ce4a92c36b00649c58e0a068a6cdfa4
Author:     Jens Axboe <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 23 09:27:05 2007 +0200
Committer:  Jens Axboe <[EMAIL PROTECTED]>
CommitDate: Tue Oct 23 09:27:05 2007 +0200

    [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 <[EMAIL PROTECTED]>
---
 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 61c2e39..fb8fb88 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;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to