提交 259a187a 编写于 作者: N Noah Watkins 提交者: Sage Weil

ceph: fix memory leak

kfree does not clean up indirect allocations in
ceph_fs_client and ceph_options (e.g. snapdir_name).
Signed-off-by: NNoah Watkins <noahwatkins@gmail.com>
Signed-off-by: NSage Weil <sage@newdream.net>
上级 795858db
...@@ -813,8 +813,8 @@ static struct dentry *ceph_mount(struct file_system_type *fs_type, ...@@ -813,8 +813,8 @@ static struct dentry *ceph_mount(struct file_system_type *fs_type,
fsc = create_fs_client(fsopt, opt); fsc = create_fs_client(fsopt, opt);
if (IS_ERR(fsc)) { if (IS_ERR(fsc)) {
res = ERR_CAST(fsc); res = ERR_CAST(fsc);
kfree(fsopt); destroy_mount_options(fsopt);
kfree(opt); ceph_destroy_options(opt);
goto out_final; goto out_final;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册