From: David Howells <dhowells@redhat.com>
Date: Mon, 2 Apr 2007 22:46:28 +0000 (+0100)
Subject: [PATCH] SLAB: Mention slab name when listing corrupt objects
X-Git-Tag: firefly_0821_release~30425
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e94a40c508dbdce872c79a13b35830c050d71e23;p=firefly-linux-kernel-4.4.55.git

[PATCH] SLAB: Mention slab name when listing corrupt objects

Mention the slab name when listing corrupt objects.  Although the function
that released the memory is mentioned, that is frequently ambiguous as such
functions often release several pieces of memory.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
---

diff --git a/mm/slab.c b/mm/slab.c
index 57f7aa420064..4cbac24ae2f1 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -1802,8 +1802,8 @@ static void check_poison_obj(struct kmem_cache *cachep, void *objp)
 			/* Print header */
 			if (lines == 0) {
 				printk(KERN_ERR
-					"Slab corruption: start=%p, len=%d\n",
-					realobj, size);
+					"Slab corruption: %s start=%p, len=%d\n",
+					cachep->name, realobj, size);
 				print_objinfo(cachep, objp, 0);
 			}
 			/* Hexdump the affected line */