mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hugh Dickins <hugh@veritas.com>
To: Christoph Lameter <clameter@sgi.com>
Cc: Srihari Vijayaraghavan <sriharivijayaraghavan@yahoo.com.au>,
	Oliver Xymoron <oxymoron@waste.org>,
	Jens Axboe <jens.axboe@oracle.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PROBLEM] 2.6.22-rc2 panics on x86-64 with slub
Date: Mon, 21 May 2007 18:41:12 +0100 (BST)	[thread overview]
Message-ID: <Pine.LNX.4.64.0705211835140.26666@blonde.wat.veritas.com> (raw)
In-Reply-To: <Pine.LNX.4.64.0705210917280.25871@schroedinger.engr.sgi.com>

On Mon, 21 May 2007, Christoph Lameter wrote:
> On Sun, 20 May 2007, Srihari Vijayaraghavan wrote:
> 
> > With no CONFIG_SLUB_DEBUG, things have slightly improved. No more panic. Good.
> > Serial console is working. Good. But there is another problem:
> 
> > Freeing unused kernel memory: 308k freed
> > BUG: spinlock bad magic on CPU#1, init/1
> >  lock: ffff81011ec0a100, .magic: ffff8101, .owner: <none>/-1, .owner_cpu: -1
> > 
> > Call Trace:
> >  [<ffffffff802fc516>] _raw_spin_lock+0x22/0xf6
> >  [<ffffffff8026f684>] vma_adjust+0x219/0x454
> >  [<ffffffff8026f684>] vma_adjust+0x219/0x454
> >  [<ffffffff8026fe0d>] vma_merge+0x147/0x1f4
> >  [<ffffffff80270b55>] do_mmap_pgoff+0x414/0x7c7
> >  [<ffffffff8040aa34>] _spin_unlock_irq+0x24/0x27
> >  [<ffffffff8020f528>] sys_mmap+0xe5/0x110
> >  [<ffffffff80209dde>] system_call+0x7e/0x83
> 
> Hmmmm..... We have seen this before
> 
> http://marc.info/?l=linux-kernel&m=117891943401284&w=2

Yes, sounded the same to me too: I couldn't reproduce it or see anything
wrong in the code back then.  But Srihari's info about CONFIG_DEBUG_SLUB
off has helped a lot: I was then able to reproduce it on my x86_64, and
after a lot of staring at the code, the problem became obvious...

[PATCH] slub: fix size adjustment when SLUB_DEBUG off

SLUB was corrupting the anon_vma's spinlock when not configured for
SLUB_DEBUG: the size adjustment necessary for SLAB_DESTROY_BY_RCU or
constructor was inside the CONFIG_SLUB_DEBUG appropriate for poisoning.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
---
 mm/slub.c |   18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

--- 2.6.22-rc2/mm/slub.c	2007-05-21 13:13:20.000000000 +0100
+++ linux/mm/slub.c	2007-05-21 18:05:57.000000000 +0100
@@ -1917,16 +1917,26 @@ static int calculate_sizes(struct kmem_c
 	 */
 	s->inuse = size;
 
+	if ((flags & SLAB_DESTROY_BY_RCU) || s->ctor) {
+		/*
+		 * Relocate free pointer after the object if it is not
+		 * permitted to overwrite the first word of the object on
+		 * kmem_cache_free.
+		 *
+		 * This is the case if we do RCU or have a constructor.
+		 */
+		s->offset = size;
+		size += sizeof(void *);
+	}
+
 #ifdef CONFIG_SLUB_DEBUG
-	if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
-		s->ctor)) {
+	if (s->flags & __OBJECT_POISON) {
 		/*
 		 * Relocate free pointer after the object if it is not
 		 * permitted to overwrite the first word of the object on
 		 * kmem_cache_free.
 		 *
-		 * This is the case if we do RCU, have a constructor or
-		 * destructor or are poisoning the objects.
+		 * This is the case if we are poisoning the objects.
 		 */
 		s->offset = size;
 		size += sizeof(void *);

  reply	other threads:[~2007-05-21 17:41 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-20 13:35 Srihari Vijayaraghavan
2007-05-21 16:30 ` Christoph Lameter
2007-05-21 17:41   ` Hugh Dickins [this message]
2007-05-21 18:25     ` Christoph Lameter
2007-05-21 18:44       ` Hugh Dickins
2007-05-21 18:48         ` Christoph Lameter
2007-05-21 19:00           ` Jens Axboe
2007-05-21 19:06             ` Hugh Dickins
2007-05-21 19:09               ` Jens Axboe
2007-05-21 19:13             ` Christoph Lameter
2007-05-21 19:26               ` Jens Axboe
2007-05-21 19:29               ` Hugh Dickins
2007-05-21 19:34                 ` Christoph Lameter
2007-05-21 22:27                 ` Christoph Lameter
2007-05-21 23:46                   ` Christoph Lameter
2007-05-22  7:07                   ` Jens Axboe
2007-05-22  8:26                     ` Srihari Vijayaraghavan
2007-05-22  9:24                       ` Ingo Molnar
2007-05-22 11:01                         ` Srihari Vijayaraghavan
2007-05-22 11:20                           ` Ingo Molnar
2007-05-22 11:26                             ` Srihari Vijayaraghavan
2007-05-22 13:01                           ` Hugh Dickins
2007-05-22 15:36                             ` Jens Axboe
2007-05-22 18:30                               ` Christoph Lameter
2007-05-22 20:10                                 ` Jens Axboe
2007-05-22 22:15                             ` Srihari Vijayaraghavan
2007-05-22 22:25                               ` Christoph Lameter
2007-05-23  7:11                                 ` Jens Axboe
2007-05-23 17:04                                   ` Christoph Lameter
2007-05-24  7:25                                     ` Jens Axboe
2007-05-24 16:55                                       ` Christoph Lameter
2007-05-25  6:12                                         ` Jens Axboe
2007-05-25 13:40                                           ` Christoph Lameter
2007-05-25 14:00                                             ` Jens Axboe
2007-05-26  1:52                                           ` Christoph Lameter
2007-05-26  2:49                                             ` Srihari Vijayaraghavan
2007-05-23 10:18                                 ` Srihari Vijayaraghavan
2007-05-23 17:10                                   ` Christoph Lameter
2007-05-23 17:19                                   ` Christoph Lameter
2007-05-23 22:23                                     ` Srihari Vijayaraghavan
2007-05-23 22:32                                       ` Christoph Lameter
2007-05-24 13:12                                         ` Srihari Vijayaraghavan
2007-05-24 16:58                                           ` Christoph Lameter
2007-05-24 21:30                                             ` Srihari Vijayaraghavan
2007-05-24 22:19                                               ` Christoph Lameter
2007-05-24 22:39                                                 ` Srihari Vijayaraghavan
2007-05-21 19:04           ` Hugh Dickins
  -- strict thread matches above, loose matches on Subject: below --
2007-05-20  3:09 Srihari Vijayaraghavan
2007-05-20  7:12 ` Christoph Lameter
2007-05-20  7:40   ` Srihari Vijayaraghavan
2007-05-20 13:24     ` Satyam Sharma
2007-05-20 13:37       ` Srihari Vijayaraghavan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.64.0705211835140.26666@blonde.wat.veritas.com \
    --to=hugh@veritas.com \
    --cc=akpm@linux-foundation.org \
    --cc=clameter@sgi.com \
    --cc=jens.axboe@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oxymoron@waste.org \
    --cc=sriharivijayaraghavan@yahoo.com.au \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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®