提交 1c689cbc 编写于 作者: K Kulikov Vasiliy 提交者: Chris Metcalf

arch/tile: check kmalloc() result

If kmalloc() fails exit with -ENOMEM.
Signed-off-by: NKulikov Vasiliy <segooon@gmail.com>
Acked-by: NChris Metcalf <cmetcalf@tilera.com>
上级 a2262d8a
......@@ -364,6 +364,8 @@ static struct hardwall_info *hardwall_create(
/* Allocate a new rectangle optimistically. */
rect = kmalloc(sizeof(struct hardwall_info),
GFP_KERNEL | __GFP_ZERO);
if (rect == NULL)
return ERR_PTR(-ENOMEM);
INIT_LIST_HEAD(&rect->task_head);
/* Compute the rectangle size and validate that it's plausible. */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册