summaryrefslogtreecommitdiff
path: root/fs/gfs2/rgrp.c
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2011-11-21 10:05:55 +0000
committerSteven Whitehouse <swhiteho@redhat.com>2011-11-21 10:05:55 +0000
commit465f0a760db4362f3353aaa95fea767e56370006 (patch)
tree36b4e12f747105902039ba1fcfe78a18b744531b /fs/gfs2/rgrp.c
parent6e87ed0fc93ffbe2aec296e6912b1dcb19034d6c (diff)
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: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/rgrp.c')
-rw-r--r--fs/gfs2/rgrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c
index b8935afab20..f1d19603d23 100644
--- a/fs/gfs2/rgrp.c
+++ b/fs/gfs2/rgrp.c
@@ -1378,7 +1378,7 @@ int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *ndata,
ip->i_inode.i_gid);
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);
*bn = block;
return 0;