diff options
Diffstat (limited to 'arch')
-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. */ |