diff options
author | Kulikov Vasiliy <segooon@gmail.com> | 2010-07-16 12:13:02 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2010-07-16 13:37:14 -0400 |
commit | 1c689cbcf2c2b7a35cd237abddd9206bb1b6fee1 (patch) | |
tree | c8c8cf60bf54e6e0c57488fcdc7f86e9e3aacd6c | |
parent | a2262d8a231e92742651859a10c9a4430a5e899a (diff) |
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>
-rw-r--r-- | arch/tile/kernel/hardwall.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/tile/kernel/hardwall.c b/arch/tile/kernel/hardwall.c index 7bf0627b733d..584b965dc824 100644 --- a/arch/tile/kernel/hardwall.c +++ b/arch/tile/kernel/hardwall.c | |||
@@ -364,6 +364,8 @@ static struct hardwall_info *hardwall_create( | |||
364 | /* Allocate a new rectangle optimistically. */ | 364 | /* Allocate a new rectangle optimistically. */ |
365 | rect = kmalloc(sizeof(struct hardwall_info), | 365 | rect = kmalloc(sizeof(struct hardwall_info), |
366 | GFP_KERNEL | __GFP_ZERO); | 366 | GFP_KERNEL | __GFP_ZERO); |
367 | if (rect == NULL) | ||
368 | return ERR_PTR(-ENOMEM); | ||
367 | INIT_LIST_HEAD(&rect->task_head); | 369 | INIT_LIST_HEAD(&rect->task_head); |
368 | 370 | ||
369 | /* Compute the rectangle size and validate that it's plausible. */ | 371 | /* Compute the rectangle size and validate that it's plausible. */ |