From patchwork Thu Jul 29 04:13:06 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 60186 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 0086AB6F10 for ; Thu, 29 Jul 2010 14:13:39 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750929Ab0G2ENN (ORCPT ); Thu, 29 Jul 2010 00:13:13 -0400 Received: from chilli.pcug.org.au ([203.10.76.44]:60541 "EHLO smtps.tip.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750809Ab0G2ENM (ORCPT ); Thu, 29 Jul 2010 00:13:12 -0400 Received: from canb.auug.org.au (ibmaus65.lnk.telstra.net [165.228.126.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtps.tip.net.au (Postfix) with ESMTPSA id D3995144002; Thu, 29 Jul 2010 14:13:09 +1000 (EST) Date: Thu, 29 Jul 2010 14:13:06 +1000 From: Stephen Rothwell To: David Miller , Cc: linux-next@vger.kernel.org, linux-kernel@vger.kernel.org, Dmitry Kravkov , Eilon Greenstein Subject: linux-next: build failure after merge of the final tree (net tree related) Message-Id: <20100729141306.f27fad7a.sfr@canb.auug.org.au> X-Mailer: Sylpheed 3.0.2 (GTK+ 2.20.1; i486-pc-linux-gnu) Mime-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi Dave, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/net/bnx2x/bnx2x_cmn.c: In function 'bnx2x_start_xmit': drivers/net/bnx2x/bnx2x_cmn.c:2015: error: implicit declaration of function 'csum_ipv6_magic' Caused by commit 9f6c925889ad9204c7d1f5ca116d2e5fd6036c72 ("bnx2x: Create bnx2x_cmn.* files"). See Rule 1 in Documentation/SubmitChecklist. :-) I applied the following patch for today: From: Stephen Rothwell Date: Thu, 29 Jul 2010 14:07:49 +1000 Subject: [PATCH] net: bnx2x_cmn.c needs net/ip6_checksum.h for csum_ipv6_magic Signed-off-by: Stephen Rothwell --- drivers/net/bnx2x/bnx2x_cmn.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/bnx2x/bnx2x_cmn.c b/drivers/net/bnx2x/bnx2x_cmn.c index 30d20c7..02bf710 100644 --- a/drivers/net/bnx2x/bnx2x_cmn.c +++ b/drivers/net/bnx2x/bnx2x_cmn.c @@ -19,6 +19,7 @@ #include #include #include +#include #include "bnx2x_cmn.h" #ifdef BCM_VLAN