Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757249Ab0ANPdY (ORCPT ); Thu, 14 Jan 2010 10:33:24 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756442Ab0ANPdX (ORCPT ); Thu, 14 Jan 2010 10:33:23 -0500 Received: from rcsinet12.oracle.com ([148.87.113.124]:26869 "EHLO rcsinet12.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756921Ab0ANPdV (ORCPT ); Thu, 14 Jan 2010 10:33:21 -0500 Date: Thu, 14 Jan 2010 07:32:53 -0800 From: Randy Dunlap To: Octavian Purdila Cc: "David S. Miller" , Jarek Poplawski , Ingo Molnar , Stephen Rothwell , netdev@vger.kernel.org, linux-next@vger.kernel.org, LKML , Arnd Bergmann Subject: Re: linux-next: Tree for January 8 (net/ip.h, BUG=n) Message-Id: <20100114073253.a87403e8.randy.dunlap@oracle.com> In-Reply-To: <201001132121.44763.opurdila@ixiacom.com> References: <20100113085418.GB6053@ff.dom.local> <201001132121.44763.opurdila@ixiacom.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.6.0 (GTK+ 2.16.6; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Source-IP: acsmt355.oracle.com [141.146.40.155] X-Auth-Type: Internal IP X-CT-RefId: str=0001.0A090204.4B4F392B.01AD:SCFMA4539814,ss=1,fgs=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1956 Lines: 68 On Wed, 13 Jan 2010 21:21:44 +0200 Octavian Purdila wrote: > On Wednesday 13 January 2010 10:54:18 you wrote: > > Octavian added to cc. > > > > Jarek P. > > > > On 13-01-2010 08:35, Ingo Molnar wrote: > > > * Randy Dunlap wrote: > > >> On Fri, 8 Jan 2010 16:42:32 +1100 Stephen Rothwell wrote: > > >>> Hi all, > > >>> > > >>> Changes since 20100107: > > >> > > >> When CONFIG_BUG=n, CONFIG_GENERIC_BUG=n: > > >> > > >> include/net/ip.h:341: error: implicit declaration of function '__WARN' > > >> > > >> This affects: > > >> make[3]: *** [security/selinux/hooks.o] Error 1 > > >> make[3]: *** [fs/ceph/messenger.o] Error 1 > > >> make[3]: *** [net/core/sock.o] Error 1 > > >> make[4]: *** [drivers/net/benet/be_main.o] Error 1 > > > > > > FYI, this new build bug is now upstream and triggers in -tip testing as > > > well. > > > > > > Ingo > > > > Sorry about this bug and the delay. David, here is a patch against net-2.6 to fix this build error. > > [PATCH] net: fix build erros with CONFIG_BUG=n, CONFIG_GENERIC_BUG=n > > Fixed build errors introduced by commit 7ad6848c (ip: fix mc_loop checks for > tunnels with multicast outer addresses) > > Signed-off-by: Octavian Purdila > --- > include/net/ip.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/net/ip.h b/include/net/ip.h > index d9a0e74..fb63371 100644 > --- a/include/net/ip.h > +++ b/include/net/ip.h > @@ -338,7 +338,7 @@ static inline int sk_mc_loop(struct sock *sk) > return inet6_sk(sk)->mc_loop; > #endif > } > - __WARN(); > + WARN_ON(1); > return 1; > } > > -- Acked-by: Randy Dunlap Thanks. --- ~Randy -- 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/