Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759739AbXJMLTx (ORCPT ); Sat, 13 Oct 2007 07:19:53 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753965AbXJMLTp (ORCPT ); Sat, 13 Oct 2007 07:19:45 -0400 Received: from home.nigel.suspend2.net ([203.171.70.205]:33586 "EHLO home.nigel.suspend2.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753338AbXJMLTo (ORCPT ); Sat, 13 Oct 2007 07:19:44 -0400 From: Nigel Cunningham To: Dave Jones Subject: Re: Current Linus' git compilation breakage. Date: Sat, 13 Oct 2007 21:19:34 +1000 User-Agent: KMail/1.9.6 (enterprise 0.20070907.709405) Cc: LKML References: <200710131111.32941.nigel@nigel.suspend2.net> <20071013012244.GD18760@redhat.com> In-Reply-To: <20071013012244.GD18760@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200710132119.36082.nigel@nigel.suspend2.net> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1539 Lines: 46 Hi Dave et al. On Saturday 13 October 2007 11:22:44 Dave Jones wrote: > On Sat, Oct 13, 2007 at 11:11:31AM +1000, Nigel Cunningham wrote: > > Hi all. > > > > Maybe I just picked a bad time to try, but... > > > > arch/x86/kernel/alternative.c: In function 'apply_alternatives': > > arch/x86/kernel/alternative.c:191: error: 'VSYSCALL_START' undeclared (first use in this function) > > arch/x86/kernel/alternative.c:191: error: (Each undeclared identifier is reported only once > > arch/x86/kernel/alternative.c:191: error: for each function it appears in.) > > arch/x86/kernel/alternative.c:191: error: 'VSYSCALL_END' undeclared (first use in this function) > > make[1]: *** [arch/x86/kernel/alternative.o] Error 1 > > make: *** [arch/x86/kernel] Error 2 > > Try this. > > Include missing header for vsyscall. > > Signed-off-by: Dave Jones Thanks. Compile-Tested-by: Nigel Cunningham > diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c > index bd72d94..11b03d3 100644 > --- a/arch/x86/kernel/alternative.c > +++ b/arch/x86/kernel/alternative.c > @@ -10,6 +10,7 @@ > #include > #include > #include > +#include > > #define MAX_PATCH_LEN (255-1) - 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/