Commit e55d1153 authored by David Sterba's avatar David Sterba
Browse files

btrfs: send: use temporary variable to store allocation size



We're going to use the argument multiple times later.

Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent eb5b75fe
Loading
Loading
Loading
Loading
+8 −6
Original line number Original line Diff line number Diff line
@@ -5939,6 +5939,7 @@ long btrfs_ioctl_send(struct file *mnt_file, void __user *arg_)
	u32 i;
	u32 i;
	u64 *clone_sources_tmp = NULL;
	u64 *clone_sources_tmp = NULL;
	int clone_sources_to_rollback = 0;
	int clone_sources_to_rollback = 0;
	unsigned alloc_size;
	int sort_clone_roots = 0;
	int sort_clone_roots = 0;
	int index;
	int index;


@@ -6050,24 +6051,25 @@ long btrfs_ioctl_send(struct file *mnt_file, void __user *arg_)
	sctx->waiting_dir_moves = RB_ROOT;
	sctx->waiting_dir_moves = RB_ROOT;
	sctx->orphan_dirs = RB_ROOT;
	sctx->orphan_dirs = RB_ROOT;


	sctx->clone_roots = vzalloc(sizeof(struct clone_root) *
	alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1);
			(arg->clone_sources_count + 1));

	sctx->clone_roots = vzalloc(alloc_size);
	if (!sctx->clone_roots) {
	if (!sctx->clone_roots) {
		ret = -ENOMEM;
		ret = -ENOMEM;
		goto out;
		goto out;
	}
	}


	alloc_size = arg->clone_sources_count * sizeof(*arg->clone_sources);

	if (arg->clone_sources_count) {
	if (arg->clone_sources_count) {
		clone_sources_tmp = vmalloc(arg->clone_sources_count *
		clone_sources_tmp = vmalloc(alloc_size);
				sizeof(*arg->clone_sources));
		if (!clone_sources_tmp) {
		if (!clone_sources_tmp) {
			ret = -ENOMEM;
			ret = -ENOMEM;
			goto out;
			goto out;
		}
		}


		ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
		ret = copy_from_user(clone_sources_tmp, arg->clone_sources,
				arg->clone_sources_count *
				alloc_size);
				sizeof(*arg->clone_sources));
		if (ret) {
		if (ret) {
			ret = -EFAULT;
			ret = -EFAULT;
			goto out;
			goto out;