Skip to content

Commit a3be5ff

Browse files
evdenisgregkh
authored andcommitted
btrfs: use kvzalloc() to allocate clone_roots in btrfs_ioctl_send()
commit 8eb2fd0 upstream. btrfs_ioctl_send() used open-coded kvzalloc implementation earlier. The code was accidentally replaced with kzalloc() call [1]. Restore the original code by using kvzalloc() to allocate sctx->clone_roots. [1] https://patchwork.kernel.org/patch/9757891/#20529627 Fixes: 818e010 ("btrfs: replace opencoded kvzalloc with the helper") CC: stable@vger.kernel.org # 4.14+ Signed-off-by: Denis Efremov <efremov@linux.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 4fdb5d0 commit a3be5ff

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fs/btrfs/send.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7300,7 +7300,7 @@ long btrfs_ioctl_send(struct file *mnt_file, struct btrfs_ioctl_send_args *arg)
73007300

73017301
alloc_size = sizeof(struct clone_root) * (arg->clone_sources_count + 1);
73027302

7303-
sctx->clone_roots = kzalloc(alloc_size, GFP_KERNEL);
7303+
sctx->clone_roots = kvzalloc(alloc_size, GFP_KERNEL);
73047304
if (!sctx->clone_roots) {
73057305
ret = -ENOMEM;
73067306
goto out;

0 commit comments

Comments
 (0)