Commit 465f0a76 authored by Steven Whitehouse's avatar Steven Whitehouse

GFS2: Fix up "off by one" in the previous patch

The trace point should take extlen and not *ndata as the
extent length.
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 6e87ed0f
...@@ -1378,7 +1378,7 @@ int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *ndata, ...@@ -1378,7 +1378,7 @@ int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *ndata,
ip->i_inode.i_gid); ip->i_inode.i_gid);
rgd->rd_free_clone -= extlen; rgd->rd_free_clone -= extlen;
trace_gfs2_block_alloc(ip, block, *ndata, trace_gfs2_block_alloc(ip, block, extlen,
dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED); dinode ? GFS2_BLKST_DINODE : GFS2_BLKST_USED);
*bn = block; *bn = block;
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment