Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8656f8c7 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "mm: Silence vmap() allocation failures based on caller gfp_flags"

parents 4101e1cc cd3caa69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -543,7 +543,7 @@ static struct vmap_area *alloc_vmap_area(unsigned long size,
		}
	}

	if (printk_ratelimit())
	if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit())
		pr_warn("vmap allocation for size %lu failed: use vmalloc=<size> to increase size\n",
			size);
	kfree(va);