* [folded-merged] vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics-v5.patch removed from -mm tree
@ 2024-06-29 2:20 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2024-06-29 2:20 UTC (permalink / raw)
To: mm-commits, xiongwei.song, willy, urezki, shubhang, guoren,
corbet, cl, Shubhang, akpm
The quilt patch titled
Subject: vmalloc: modify the alloc_vmap_area() error message for better diagnostics
has been removed from the -mm tree. Its filename was
vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics-v5.patch
This patch was dropped because it was folded into vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics.patch
------------------------------------------------------
From: Shubhang Kaushik OS <Shubhang@os.amperecomputing.com>
Subject: vmalloc: modify the alloc_vmap_area() error message for better diagnostics
Date: Tue, 11 Jun 2024 19:38:44 +0000
replace the vmalloc range parameters in the overflow warning message to be
between vstart and vend
Link: https://lkml.kernel.org/r/CH2PR01MB5894B0182EA0B28DF2EFB916F5C72@CH2PR01MB5894.prod.exchangelabs.com
Signed-off-by: Shubhang Kaushik <shubhang@os.amperecomputing.com>
Reviewed-by: Christoph Lameter (Ampere) <cl@linux.com>
Cc: Guo Ren <guoren@kernel.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Uladzislau Rezki (Sony) <urezki@gmail.com>
Cc: Xiongwei Song <xiongwei.song@windriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
mm/vmalloc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/mm/vmalloc.c~vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics-v5
+++ a/mm/vmalloc.c
@@ -2057,7 +2057,7 @@ overflow:
if (!(gfp_mask & __GFP_NOWARN) && printk_ratelimit())
pr_warn("vmalloc_node_range for size %lu failed: Address range restricted to %#lx - %#lx\n",
- size, addr, addr+size);
+ size, vstart, vend);
kmem_cache_free(vmap_area_cachep, va);
return ERR_PTR(-EBUSY);
_
Patches currently in -mm which might be from Shubhang@os.amperecomputing.com are
vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-06-29 2:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-29 2:20 [folded-merged] vmalloc-modify-the-alloc_vmap_area-error-message-for-better-diagnostics-v5.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.