mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH?] slab.c
@ 2003-01-26 23:14 Andries.Brouwer
  2003-01-27  3:18 ` Andrew Morton
  0 siblings, 1 reply; 2+ messages in thread
From: Andries.Brouwer @ 2003-01-26 23:14 UTC (permalink / raw)
  To: akpm, linux-kernel

In slab.c the routine check_poison_obj() is called.
That routine does nothing except return 0 or 1.
Thus it looks like the present call in slab_destroy()
is meaningless. Perhaps something like this was meant?

--- slab.c~	Sat Jan 18 23:54:30 2003
+++ slab.c	Mon Jan 27 00:05:47 2003
@@ -796,7 +796,8 @@
 		void *objp = slabp->s_mem + cachep->objsize * i;
 
 		if (cachep->flags & SLAB_POISON)
-			check_poison_obj(cachep, objp);
+			if (check_poison_obj(cachep, objp))
+				BUG();
 
 		if (cachep->flags & SLAB_RED_ZONE) {
 			if (*((unsigned long*)(objp)) != RED_INACTIVE)

A BUG() was lost in patch 2.5.45.

Andries

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-01-27  3:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-01-26 23:14 [PATCH?] slab.c Andries.Brouwer
2003-01-27  3:18 ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®