From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933109AbYDOWIU (ORCPT ); Tue, 15 Apr 2008 18:08:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758526AbYDOWIE (ORCPT ); Tue, 15 Apr 2008 18:08:04 -0400 Received: from mx3.mail.elte.hu ([157.181.1.138]:59904 "EHLO mx3.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756664AbYDOWID (ORCPT ); Tue, 15 Apr 2008 18:08:03 -0400 Date: Wed, 16 Apr 2008 00:07:21 +0200 From: Ingo Molnar To: Christoph Lameter Cc: Linus Torvalds , Pekka Enberg , linux-kernel@vger.kernel.org, Mel Gorman , Nick Piggin , Andrew Morton , "Rafael J. Wysocki" , Yinghai.Lu@sun.com, apw@shadowen.org, travis@sgi.com, KAMEZAWA Hiroyuki Subject: Re: [bug] SLUB + mm/slab.c boot crash in -rc9 Message-ID: <20080415220721.GA11579@elte.hu> References: <20080415203405.GA27958@elte.hu> <20080415204208.GA30432@elte.hu> <20080415205820.GC31645@elte.hu> <20080415211953.GA4243@elte.hu> <20080415212301.GA5428@elte.hu> <20080415212833.GA6180@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080415212833.GA6180@elte.hu> User-Agent: Mutt/1.5.17 (2007-11-01) X-ELTE-VirusStatus: clean X-ELTE-SpamScore: -1.5 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-1.5 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.3 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Ingo Molnar wrote: > +++ linux/arch/x86/kernel/vmlinux_32.lds.S > @@ -186,6 +186,7 @@ SECTIONS > __per_cpu_start = .; > *(.data.percpu) > *(.data.percpu.shared_aligned) > + . = . + 65536; > __per_cpu_end = .; > } > . = ALIGN(PAGE_SIZE); this seems to have the intended effect of +0x10000 padding at the end of the percpu area: c0b927d0 D per_cpu__cpu_info c0b92880 d per_cpu__runqueues c0ba2d00 D __per_cpu_end c0ba3000 B __bss_start it still crashes though, with an very similar crash pattern to the previous ones. Ingo