diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-10-01 16:47:53 +0200 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2013-10-01 10:26:24 -0500 |
commit | aaaae98022efa4f3c31042f1fdf9e7a0c5f04663 (patch) | |
tree | a1ed7dc62a4cfbc0fa6364046104f84e0d3efa10 /fs/xfs | |
parent | 519ccb81ac1c8e3e4eed294acf93be00b43dcad6 (diff) | |
download | blackbird-op-linux-aaaae98022efa4f3c31042f1fdf9e7a0c5f04663.tar.gz blackbird-op-linux-aaaae98022efa4f3c31042f1fdf9e7a0c5f04663.zip |
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 <treding@nvidia.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_log_recover.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 43240583fd5b..39797490a1f1 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); } |