[GFS2] Fix log block mapper
authorSteven Whitehouse <swhiteho@redhat.com>
Fri, 14 Dec 2007 14:04:34 +0000 (14:04 +0000)
committerSteven Whitehouse <swhiteho@redhat.com>
Fri, 25 Jan 2008 08:15:58 +0000 (08:15 +0000)
A missing offset in the calculation.

Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
fs/gfs2/log.c

index 69a583e..9164525 100644 (file)
@@ -343,7 +343,7 @@ static u64 log_bmap(struct gfs2_sbd *sdp, unsigned int lbn)
 
        list_for_each_entry(je, &sdp->sd_jdesc->extent_list, extent_list) {
                if (lbn >= je->lblock && lbn < je->lblock + je->blocks)
-                       return je->dblock + lbn;
+                       return je->dblock + lbn - je->lblock;
        }
 
        return -1;