Browse Source

arch/tile: check kmalloc() result

If kmalloc() fails exit with -ENOMEM.

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
Acked-by: Chris Metcalf <cmetcalf@tilera.com>
Kulikov Vasiliy 15 years ago
parent
commit
1c689cbcf2
1 changed files with 2 additions and 0 deletions
  1. 2 0
      arch/tile/kernel/hardwall.c

+ 2 - 0
arch/tile/kernel/hardwall.c

@@ -364,6 +364,8 @@ static struct hardwall_info *hardwall_create(
 	/* Allocate a new rectangle optimistically. */
 	/* Allocate a new rectangle optimistically. */
 	rect = kmalloc(sizeof(struct hardwall_info),
 	rect = kmalloc(sizeof(struct hardwall_info),
 			GFP_KERNEL | __GFP_ZERO);
 			GFP_KERNEL | __GFP_ZERO);
+	if (rect == NULL)
+		return ERR_PTR(-ENOMEM);
 	INIT_LIST_HEAD(&rect->task_head);
 	INIT_LIST_HEAD(&rect->task_head);
 
 
 	/* Compute the rectangle size and validate that it's plausible. */
 	/* Compute the rectangle size and validate that it's plausible. */