Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761606AbYA1REZ (ORCPT ); Mon, 28 Jan 2008 12:04:25 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754798AbYA1RES (ORCPT ); Mon, 28 Jan 2008 12:04:18 -0500 Received: from ogre.sisk.pl ([217.79.144.158]:35804 "EHLO ogre.sisk.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752729AbYA1RER (ORCPT ); Mon, 28 Jan 2008 12:04:17 -0500 From: "Rafael J. Wysocki" To: Ingo Molnar Subject: Re: [PATCH] x86: Construct 32 bit boot time page tables in native format. Date: Mon, 28 Jan 2008 18:02:00 +0100 User-Agent: KMail/1.9.6 (enterprise 20070904.708012) Cc: Pavel Machek , "H. Peter Anvin" , Jeremy Fitzhardinge , Ian Campbell , Mika Penttil? , linux-kernel@vger.kernel.org, Thomas Gleixner , Ingo Molnar , "Eric W. Biederman" , Len Brown References: <1201167544.30671.64.camel@cthulhu.hellion.org.uk> <20080128150022.GE27928@elte.hu> <20080128161239.GA28906@elte.hu> In-Reply-To: <20080128161239.GA28906@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200801281802.01748.rjw@sisk.pl> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1361 Lines: 38 On Monday, 28 of January 2008, Ingo Molnar wrote: > > > > * driver might have split up a kernel 4MB mapping. > > > */ > > > -char __nosavedata swsusp_pg_dir[PAGE_SIZE] > > > +char swsusp_pg_dir[PAGE_SIZE] > > hm, random-qa found build breakage with this patch: > > arch/x86/kernel/built-in.o: In function `wakeup_start': > : undefined reference to `swsusp_pg_dir' > > config attached. I see. CONFIG_HIBERNATION && CONFIG_ACPI -> CONFIG_ACPI_SLEEP and the Makefile in arch/x86/kernel/acpi/ wants to build wakeup.S, which is not necessary. Hmm. We can do a couple of things: (1) make wakeup_$(BITS).o depend on CONFIG_SUSPEND (alone) This will build it if CONFIG_SUSPEND is set, but CONFIG_ACPI is not (still, that's consistent with the change in question). (2) make wakeup_$(BITS).o depend on CONFIG_SUSPEND and CONFIG_ACPI (3) define CONFIG_ACPI_SUSPEND depending on ACPI and SUSPEND and make wakeup_$(BITS).o as well as swsusp_pg_dir depend on that (most elegant) Which one do you prefer? In case you choose (3), please drop the patch and I'll send a new one to Len. Thanks, Rafael -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/