aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorMandy Kirkconnell <alkirkco@sgi.com>2006-06-09 00:51:25 -0400
committerNathan Scott <nathans@sgi.com>2006-06-09 00:51:25 -0400
commitfe6c1e7240e3a7cb600030f9c909273365d52a9d (patch)
tree26e55aea45e754fae8888ce16d0001544432fd29 /fs
parent3f368a0d58cb8cadab298546286f94ca14220f65 (diff)
[XFS] Fix size argument in kmem_free().
SGI-PV: 952291 SGI-Modid: xfs-linux-melb:xfs-kern:209807a Signed-off-by: Mandy Kirkconnell <alkirkco@sgi.com> Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/xfs/xfs_inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 020de5637e06..f5284453441b 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -4181,7 +4181,7 @@ xfs_iext_direct_to_inline(
4181 */ 4181 */
4182 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents, 4182 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
4183 nextents * sizeof(xfs_bmbt_rec_t)); 4183 nextents * sizeof(xfs_bmbt_rec_t));
4184 kmem_free(ifp->if_u1.if_extents, KM_SLEEP); 4184 kmem_free(ifp->if_u1.if_extents, ifp->if_real_bytes);
4185 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext; 4185 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
4186 ifp->if_real_bytes = 0; 4186 ifp->if_real_bytes = 0;
4187} 4187}