提交 7cbd8a83 编写于 作者: Y yanhai zhu 提交者: Chris Mason

Btrfs: Add a missing return pointer check

Add a missing kzalloc() return pointer check in add_missing_dev().
Signed-off-by: NChris Mason <chris.mason@oracle.com>
上级 0df49b91
......@@ -2755,6 +2755,8 @@ static struct btrfs_device *add_missing_dev(struct btrfs_root *root,
struct btrfs_fs_devices *fs_devices = root->fs_info->fs_devices;
device = kzalloc(sizeof(*device), GFP_NOFS);
if (!device)
return NULL;
list_add(&device->dev_list,
&fs_devices->devices);
device->barriers = 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册