mm/vmalloc: repair warn_alloc()s in __vmalloc_area_node()
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2064990 This patch is a backport of the following upstream commit: commit 228f778e973035185232ae745be0e3bc57dacea6 Author: Vasily Averin <vvs@virtuozzo.com> Date: Fri Nov 5 13:39:19 2021 -0700 mm/vmalloc: repair warn_alloc()s in __vmalloc_area_node() Commitf255935b97
("mm: cleanup the gfp_mask handling in __vmalloc_area_node") added __GFP_NOWARN to gfp_mask unconditionally however it disabled all output inside warn_alloc() call. This patch saves original gfp_mask and provides it to all warn_alloc() calls. Link: https://lkml.kernel.org/r/f4f3187b-9684-e426-565d-827c2a9bbb0e@virtuozzo.com Fixes:f255935b97
("mm: cleanup the gfp_mask handling in __vmalloc_area_node") Signed-off-by: Vasily Averin <vvs@virtuozzo.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Muchun Song <songmuchun@bytedance.com> Cc: Uladzislau Rezki (Sony) <urezki@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Rafael Aquini <aquini@redhat.com>
This commit is contained in:
parent
c6ba915f01
commit
aec21d65d2
|
@ -2903,6 +2903,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
|
|||
int node)
|
||||
{
|
||||
const gfp_t nested_gfp = (gfp_mask & GFP_RECLAIM_MASK) | __GFP_ZERO;
|
||||
const gfp_t orig_gfp_mask = gfp_mask;
|
||||
unsigned long addr = (unsigned long)area->addr;
|
||||
unsigned long size = get_vm_area_size(area);
|
||||
unsigned long array_size;
|
||||
|
@ -2923,7 +2924,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
|
|||
}
|
||||
|
||||
if (!area->pages) {
|
||||
warn_alloc(gfp_mask, NULL,
|
||||
warn_alloc(orig_gfp_mask, NULL,
|
||||
"vmalloc error: size %lu, failed to allocated page array size %lu",
|
||||
nr_small_pages * PAGE_SIZE, array_size);
|
||||
free_vm_area(area);
|
||||
|
@ -2943,7 +2944,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
|
|||
* allocation request, free them via __vfree() if any.
|
||||
*/
|
||||
if (area->nr_pages != nr_small_pages) {
|
||||
warn_alloc(gfp_mask, NULL,
|
||||
warn_alloc(orig_gfp_mask, NULL,
|
||||
"vmalloc error: size %lu, page order %u, failed to allocate pages",
|
||||
area->nr_pages * PAGE_SIZE, page_order);
|
||||
goto fail;
|
||||
|
@ -2951,7 +2952,7 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
|
|||
|
||||
if (vmap_pages_range(addr, addr + size, prot, area->pages,
|
||||
page_shift) < 0) {
|
||||
warn_alloc(gfp_mask, NULL,
|
||||
warn_alloc(orig_gfp_mask, NULL,
|
||||
"vmalloc error: size %lu, failed to map pages",
|
||||
area->nr_pages * PAGE_SIZE);
|
||||
goto fail;
|
||||
|
|
Loading…
Reference in New Issue