diff options
author | Jie Liu <jeff.liu@oracle.com> | 2013-09-11 14:19:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-11 15:56:44 -0700 |
commit | 4704aa30fc35010dd9c3ce1d9d2e77af09c2c081 (patch) | |
tree | 9a506a85ce98233f7b5092fb6f57793d2922046a /fs | |
parent | 2b0f6eae2dd2f7f21dbf93241938a687f6757dea (diff) | |
download | op-kernel-dev-4704aa30fc35010dd9c3ce1d9d2e77af09c2c081.zip op-kernel-dev-4704aa30fc35010dd9c3ce1d9d2e77af09c2c081.tar.gz |
ocfs2: fix a memory leak in __ocfs2_move_extents()
The ocfs2 path is not properly freed which leads to a memory leak at
__ocfs2_move_extents().
This patch stops the leaks of the ocfs2_path structure.
Signed-off-by: Jie Liu <jeff.liu@oracle.com>
Reviewed-by: Younger Liu <younger.liu@huawei.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ocfs2/move_extents.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ocfs2/move_extents.c b/fs/ocfs2/move_extents.c index 4159285..3d3f3c8 100644 --- a/fs/ocfs2/move_extents.c +++ b/fs/ocfs2/move_extents.c @@ -152,6 +152,7 @@ static int __ocfs2_move_extent(handle_t *handle, } out: + ocfs2_free_path(path); return ret; } |