From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754006Ab0JYIrw (ORCPT ); Mon, 25 Oct 2010 04:47:52 -0400 Received: from cantor2.suse.de ([195.135.220.15]:49346 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753898Ab0JYIru (ORCPT ); Mon, 25 Oct 2010 04:47:50 -0400 Message-ID: <4CC54437.8050607@suse.cz> Date: Mon, 25 Oct 2010 10:47:51 +0200 From: Michal Marek User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; cs-CZ; rv:1.9.1.11) Gecko/20100714 SUSE/3.0.6 Thunderbird/3.0.6 MIME-Version: 1.0 To: Christoph Hellwig Cc: Stephen Rothwell , linux-next@vger.kernel.org, LKML Subject: Re: linux-next: Tree for October 20 References: <20101020162053.5595e1bf.sfr@canb.auug.org.au> <20101021130925.GA32548@infradead.org> In-Reply-To: <20101021130925.GA32548@infradead.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 21.10.2010 15:09, Christoph Hellwig wrote: > I can't even get the required userspace code make oldconfig to compile: > > hch@brick:~/work/linux-2.6/obj-kvm$ make oldconfig > make -C /home/hch/work/linux-2.6 O=/home/hch/work/linux-2.6/obj-kvm/. oldconfig > GEN /home/hch/work/linux-2.6/obj-kvm/Makefile > HOSTCC scripts/kconfig/zconf.tab.o > In file included from scripts/kconfig/zconf.tab.c:2481: > scripts/kconfig/lex.zconf.c:2425: error: conflicting types for 'zconf_curname' > /home/hch/work/linux-2.6/scripts/kconfig/lkc.h:79: note: previous declaration of 'zconf_curname' was here > scripts/kconfig/lex.zconf.c: In function 'zconf_curname': > scripts/kconfig/lex.zconf.c:2427: warning: return discards qualifiers from pointer target type The zconf_curname() prototype was changed in 2e7a091 and the scripts/kconfig/lex.zconf.c_shipped file was updated as well. What probably happened is that you ended up using an updated scripts/kconfig/lkc.h header versus an old version of scripts/kconfig/lex.zconf.c. Ie. the rule that copies scripts/kconfig/lex.zconf.c_shipped to scripts/kconfig/lex.zconf.c did not trigger, very strange. I'll look further. Michal