From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753108Ab0HWD1k (ORCPT ); Sun, 22 Aug 2010 23:27:40 -0400 Received: from chilli.pcug.org.au ([203.10.76.44]:42656 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752853Ab0HWD1i (ORCPT ); Sun, 22 Aug 2010 23:27:38 -0400 Date: Mon, 23 Aug 2010 13:27:34 +1000 From: Stephen Rothwell To: David Miller , Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, =?UTF-8?B?Ikdyw6lnb2lyZSBCYXJvbiI=?= Subject: linux-next: build failure after merge of the final tree (net tree related) Message-Id: <20100823132734.ffc076ae.sfr@canb.auug.org.au> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; i486-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: net/sched/act_csum.c: In function 'tcf_csum_ipv6_icmp': net/sched/act_csum.c:178: error: implicit declaration of function 'csum_ipv6_magic' Caused by commit eb4d40654505e47aa9d2035bb97f631fa61d14b4 ("net/sched: add ACT_CSUM action to update packets checksums"). I added this patch for today: From: Stephen Rothwell Date: Mon, 23 Aug 2010 13:23:22 +1000 Subject: [PATCH] net/sched: need to include net/ip6_checksum.h for the declararion of csum_ipv6_magic. Fixes this build error on PowerPC (at least): net/sched/act_csum.c: In function 'tcf_csum_ipv6_icmp': net/sched/act_csum.c:178: error: implicit declaration of function 'csum_ipv6_magic' Signed-off-by: Stephen Rothwell --- net/sched/act_csum.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/sched/act_csum.c b/net/sched/act_csum.c index 58d7f36..be41f1c 100644 --- a/net/sched/act_csum.c +++ b/net/sched/act_csum.c @@ -29,6 +29,7 @@ #include #include #include +#include #include -- 1.7.1 -- Cheers, Stephen Rothwell sfr@canb.auug.org.au http://www.canb.auug.org.au/~sfr/