From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp2.linux-foundation.org ([207.189.120.14]:48187 "EHLO smtp2.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750853AbXISWds (ORCPT ); Wed, 19 Sep 2007 18:33:48 -0400 Date: Wed, 19 Sep 2007 15:33:29 -0700 From: Andrew Morton Subject: Re: [patch 3/7] Use extended crashkernel command line on x86_64 Message-Id: <20070919153329.cfe714e3.akpm@linux-foundation.org> In-Reply-To: <20070913161429.387888398@strauss.suse.de> References: <20070913161428.343951643@strauss.suse.de> <20070913161429.387888398@strauss.suse.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-arch-owner@vger.kernel.org To: Bernhard Walle Cc: kexec@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, discuss@x86-64.org List-ID: On Thu, 13 Sep 2007 18:14:31 +0200 Bernhard Walle wrote: > +#ifdef CONFIG_KEXEC > +static inline void reserve_crashkernel(void) > +{ The x86_64 function was made inline, so it will actually end up in .text.init. But the i386 equivalent function was not inlined so I'm not sure whether it will end up in .text or in .text.init. Could you fix all that up please?