summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAustin Kim <austindh.kim@gmail.com>2019-09-23 18:36:42 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2019-09-24 18:54:10 -0400
commit7ea362427c170061b8822dd41bafaa72b3bcb9ad (patch)
tree3b31fc56753b3fcfd467ae6b19b714dd4776ee26
parent688fcbfc06e4fdfbb7e1d5a942a1460fe6379d2d (diff)
mm/vmalloc.c: move 'area->pages' after if statement
If !area->pages statement is true where memory allocation fails, area is freed. In this case 'area->pages = pages' should not executed. So move 'area->pages = pages' after if statement. [akpm@linux-foundation.org: give area->pages the same treatment] Link: http://lkml.kernel.org/r/20190830035716.GA190684@LGEARND20B15 Signed-off-by: Austin Kim <austindh.kim@gmail.com> Acked-by: Michal Hocko <mhocko@suse.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Cc: Uladzislau Rezki (Sony) <urezki@gmail.com> Cc: Roman Gushchin <guro@fb.com> Cc: Roman Penyaev <rpenyaev@suse.de> Cc: Rick Edgecombe <rick.p.edgecombe@intel.com> Cc: Mike Rapoport <rppt@linux.ibm.com> Cc: Andrey Ryabinin <aryabinin@virtuozzo.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--mm/vmalloc.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index f095843fc243..fcadd3e25c0c 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2409,7 +2409,6 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
2409 nr_pages = get_vm_area_size(area) >> PAGE_SHIFT; 2409 nr_pages = get_vm_area_size(area) >> PAGE_SHIFT;
2410 array_size = (nr_pages * sizeof(struct page *)); 2410 array_size = (nr_pages * sizeof(struct page *));
2411 2411
2412 area->nr_pages = nr_pages;
2413 /* Please note that the recursion is strictly bounded. */ 2412 /* Please note that the recursion is strictly bounded. */
2414 if (array_size > PAGE_SIZE) { 2413 if (array_size > PAGE_SIZE) {
2415 pages = __vmalloc_node(array_size, 1, nested_gfp|highmem_mask, 2414 pages = __vmalloc_node(array_size, 1, nested_gfp|highmem_mask,
@@ -2417,13 +2416,16 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
2417 } else { 2416 } else {
2418 pages = kmalloc_node(array_size, nested_gfp, node); 2417 pages = kmalloc_node(array_size, nested_gfp, node);
2419 } 2418 }
2420 area->pages = pages; 2419
2421 if (!area->pages) { 2420 if (!pages) {
2422 remove_vm_area(area->addr); 2421 remove_vm_area(area->addr);
2423 kfree(area); 2422 kfree(area);
2424 return NULL; 2423 return NULL;
2425 } 2424 }
2426 2425
2426 area->pages = pages;
2427 area->nr_pages = nr_pages;
2428
2427 for (i = 0; i < area->nr_pages; i++) { 2429 for (i = 0; i < area->nr_pages; i++) {
2428 struct page *page; 2430 struct page *page;
2429 2431