소스 검색

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: Noah Watkins <noahwatkins@gmail.com>
Signed-off-by: Sage Weil <sage@newdream.net>
Noah Watkins 14 년 전
부모
커밋
259a187ade
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      fs/ceph/super.c

+ 2 - 2
fs/ceph/super.c

@@ -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);
-		kfree(opt);
+		destroy_mount_options(fsopt);
+		ceph_destroy_options(opt);
 		goto out_final;
 		goto out_final;
 	}
 	}