From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753636Ab0HXDm2 (ORCPT ); Mon, 23 Aug 2010 23:42:28 -0400 Received: from 74-93-104-97-Washington.hfc.comcastbusiness.net ([74.93.104.97]:54117 "EHLO sunset.davemloft.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751867Ab0HXDm0 (ORCPT ); Mon, 23 Aug 2010 23:42:26 -0400 Date: Mon, 23 Aug 2010 20:42:44 -0700 (PDT) Message-Id: <20100823.204244.216743717.davem@davemloft.net> To: randy.dunlap@oracle.com Cc: sfr@canb.auug.org.au, netdev@vger.kernel.org, linux-next@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: linux-next: Tree for August 23 (networking) From: David Miller In-Reply-To: <20100823175044.9210f050.randy.dunlap@oracle.com> References: <20100823133738.f0a45152.sfr@canb.auug.org.au> <20100823175044.9210f050.randy.dunlap@oracle.com> X-Mailer: Mew version 6.3 on Emacs 23.1 / Mule 6.0 (HANACHIRUSATO) 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 From: Randy Dunlap Date: Mon, 23 Aug 2010 17:50:44 -0700 > ERROR: "ip_send_check" [net/sched/act_csum.ko] undefined! I've applied the following to fix this: -------------------- pkt_sched: Make act_csum depend upon INET. It uses ip_send_check() and stuff like that. Reported-by: Randy Dunlap Signed-off-by: David S. Miller --- net/sched/Kconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/sched/Kconfig b/net/sched/Kconfig index 522d5a9..a36270a 100644 --- a/net/sched/Kconfig +++ b/net/sched/Kconfig @@ -520,7 +520,7 @@ config NET_ACT_SKBEDIT config NET_ACT_CSUM tristate "Checksum Updating" - depends on NET_CLS_ACT + depends on NET_CLS_ACT && INET ---help--- Say Y here to update some common checksum after some direct packet alterations. -- 1.7.2.2