From: Thierry Reding Date: Tue, 1 Oct 2013 14:47:53 +0000 (+0200) Subject: xfs: Use kmem_free() instead of free() X-Git-Tag: v3.13-rc1~87^2~45 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=aaaae98022efa4f3c31042f1fdf9e7a0c5f04663;p=~andy%2Flinux xfs: Use kmem_free() instead of free() This fixes a build failure caused by calling the free() function which does not exist in the Linux kernel. Signed-off-by: Thierry Reding Reviewed-by: Mark Tinguely Signed-off-by: Ben Myers --- diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 43240583fd5..39797490a1f 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -1585,7 +1585,7 @@ xlog_recover_add_to_trans( "bad number of regions (%d) in inode log format", in_f->ilf_size); ASSERT(0); - free(ptr); + kmem_free(ptr); return XFS_ERROR(EIO); }