提交 15351955 编写于 作者: D David Sterba

btrfs: clone: use vmalloc only as fallback for nodesize bufer

Signed-off-by: NDavid Sterba <dsterba@suse.com>
上级 2f91306a
......@@ -3468,13 +3468,16 @@ static int btrfs_clone(struct inode *src, struct inode *inode,
u64 last_dest_end = destoff;
ret = -ENOMEM;
buf = vmalloc(root->nodesize);
if (!buf)
return ret;
buf = kmalloc(root->nodesize, GFP_KERNEL | __GFP_NOWARN);
if (!buf) {
buf = vmalloc(root->nodesize);
if (!buf)
return ret;
}
path = btrfs_alloc_path();
if (!path) {
vfree(buf);
kvfree(buf);
return ret;
}
......@@ -3775,7 +3778,7 @@ static int btrfs_clone(struct inode *src, struct inode *inode,
out:
btrfs_free_path(path);
vfree(buf);
kvfree(buf);
return ret;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册