All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] mm-make-mem_obj_dump-vmalloc-dumps-include-start-and-length.patch removed from -mm tree
@ 2021-01-07 22:32 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2021-01-07 22:32 UTC (permalink / raw)
  To: andrii, axboe, cl, iamjoonsoo.kim, ming.lei, mm-commits, paulmck,
	penberg, rientjes, vbabka


The patch titled
     Subject: mm: make mem_obj_dump() vmalloc() dumps include start and length
has been removed from the -mm tree.  Its filename was
     mm-make-mem_obj_dump-vmalloc-dumps-include-start-and-length.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: "Paul E. McKenney" <paulmck@kernel.org>
Subject: mm: make mem_obj_dump() vmalloc() dumps include start and length

This commit adds the starting address and number of pages to the vmalloc()
information dumped by way of vmalloc_dump_obj().

Link: https://lkml.kernel.org/r/20210106011750.13709-4-paulmck@kernel.org
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Suggested-by: Vlastimil Babka <vbabka@suse.cz>
Reported-by: Andrii Nakryiko <andrii@kernel.org>
Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Cc: Christoph Lameter <cl@linux.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Ming Lei <ming.lei@redhat.com>
Cc: Pekka Enberg <penberg@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/vmalloc.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/mm/vmalloc.c~mm-make-mem_obj_dump-vmalloc-dumps-include-start-and-length
+++ a/mm/vmalloc.c
@@ -3456,7 +3456,8 @@ bool vmalloc_dump_obj(void *object)
 	vm = find_vm_area(objp);
 	if (!vm)
 		return false;
-	pr_cont(" vmalloc allocated at %pS\n", vm->caller);
+	pr_cont(" %u-page vmalloc region starting at %#lx allocated at %pS\n",
+		vm->nr_pages, (unsigned long)vm->addr, vm->caller);
 	return true;
 }
 
_

Patches currently in -mm which might be from paulmck@kernel.org are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-01-07 22:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-07 22:32 [merged] mm-make-mem_obj_dump-vmalloc-dumps-include-start-and-length.patch removed from -mm tree akpm

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.