diff options
Diffstat (limited to 'mm/vmalloc.c')
| -rw-r--r-- | mm/vmalloc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 8b5e4370540b..918c51335d64 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c | |||
| @@ -2437,8 +2437,11 @@ static int vmalloc_open(struct inode *inode, struct file *file) | |||
| 2437 | unsigned int *ptr = NULL; | 2437 | unsigned int *ptr = NULL; |
| 2438 | int ret; | 2438 | int ret; |
| 2439 | 2439 | ||
| 2440 | if (NUMA_BUILD) | 2440 | if (NUMA_BUILD) { |
| 2441 | ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL); | 2441 | ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL); |
| 2442 | if (ptr == NULL) | ||
| 2443 | return -ENOMEM; | ||
| 2444 | } | ||
| 2442 | ret = seq_open(file, &vmalloc_op); | 2445 | ret = seq_open(file, &vmalloc_op); |
| 2443 | if (!ret) { | 2446 | if (!ret) { |
| 2444 | struct seq_file *m = file->private_data; | 2447 | struct seq_file *m = file->private_data; |
