From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756410Ab2D3RYQ (ORCPT ); Mon, 30 Apr 2012 13:24:16 -0400 Received: from shards.monkeyblade.net ([198.137.202.13]:40807 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756355Ab2D3RYM (ORCPT ); Mon, 30 Apr 2012 13:24:12 -0400 Date: Mon, 30 Apr 2012 13:22:03 -0400 (EDT) Message-Id: <20120430.132203.912342595853741106.davem@davemloft.net> To: sfr@canb.auug.org.au Cc: netdev@vger.kernel.org, linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, bcrl@kvack.org Subject: Re: linux-next: build failure after merge of the final tree (net-next tree related) From: David Miller In-Reply-To: <20120430155836.44bcf3846c80cf686bb9cb77@canb.auug.org.au> References: <20120430155836.44bcf3846c80cf686bb9cb77@canb.auug.org.au> X-Mailer: Mew version 6.4 on Emacs 23.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.6 (shards.monkeyblade.net [198.137.202.13]); Mon, 30 Apr 2012 10:22:05 -0700 (PDT) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Stephen Rothwell Date: Mon, 30 Apr 2012 15:58:36 +1000 > Hi all, > > After merging the final tree, today's linux-next build (powerpc > allyesconfig) failed like this: > > net/l2tp/l2tp_core.c: In function 'l2tp_verify_udp_checksum': > net/l2tp/l2tp_core.c:464:7: error: implicit declaration of function 'csum_ipv6_magic' [-Werror=implicit-function-declaration] > > Caused by commit d2cf3361677e ("net/l2tp: add support for L2TP over IPv6 > UDP"). Include file missing. > > I have reverted that commit for today. The fix is less work than the revert on this one isn't it? :-) Pushed to net-next, thanks Stephen: -------------------- l2tp: Add missing net/net/ip6_checksum.h include. Reported-by: Stephen Rothwell Signed-off-by: David S. Miller --- net/l2tp/l2tp_core.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/l2tp/l2tp_core.c b/net/l2tp/l2tp_core.c index e91d559..0ca9bc3 100644 --- a/net/l2tp/l2tp_core.c +++ b/net/l2tp/l2tp_core.c @@ -56,6 +56,7 @@ #include #include #include +#include #include #include -- 1.7.7.6