diff options
Diffstat (limited to 'mm/vmalloc.c')
| -rw-r--r-- | mm/vmalloc.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 0dd80222b20b..0b057628a7ba 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -1683,7 +1683,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,  		if (fatal_signal_pending(current)) {  			area->nr_pages = i; -			goto fail; +			goto fail_no_warn;  		}  		if (node == NUMA_NO_NODE) @@ -1709,6 +1709,7 @@ fail:  	warn_alloc(gfp_mask, NULL,  			  "vmalloc: allocation failure, allocated %ld of %ld bytes",  			  (area->nr_pages*PAGE_SIZE), area->size); +fail_no_warn:  	vfree(area->addr);  	return NULL;  }  | 
