From patchwork Sun Oct 12 10:53:29 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ingo Molnar X-Patchwork-Id: 4068 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.176.167]) by ozlabs.org (Postfix) with ESMTP id 37B9BDDDF5 for ; Sun, 12 Oct 2008 21:53:52 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751891AbYJLKxp (ORCPT ); Sun, 12 Oct 2008 06:53:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751867AbYJLKxp (ORCPT ); Sun, 12 Oct 2008 06:53:45 -0400 Received: from mx2.mail.elte.hu ([157.181.151.9]:46064 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751716AbYJLKxo (ORCPT ); Sun, 12 Oct 2008 06:53:44 -0400 Received: from elvis.elte.hu ([157.181.1.14]) by mx2.mail.elte.hu with esmtp (Exim) id 1KoyZo-0006qh-RY from ; Sun, 12 Oct 2008 12:53:35 +0200 Received: by elvis.elte.hu (Postfix, from userid 1004) id 6E9033E21A3; Sun, 12 Oct 2008 12:53:29 +0200 (CEST) Date: Sun, 12 Oct 2008 12:53:29 +0200 From: Ingo Molnar To: netdev@vger.kernel.org Cc: linux-kernel@vger.kernel.org, "David S. Miller" , Julius Volz , Simon Horman Subject: [PATCH] net, ipvs: fix build on !CONFIG_INET Message-ID: <20081012105329.GA29306@elte.hu> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Received-SPF: neutral (mx2: 157.181.1.14 is neither permitted nor denied by domain of elte.hu) client-ip=157.181.1.14; envelope-from=mingo@elte.hu; helo=elvis.elte.hu; X-ELTE-VirusStatus: clean X-ELTE-SpamScore: -1.5 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-1.5 required=5.9 tests=BAYES_00, DNS_FROM_SECURITYSAGE autolearn=no SpamAssassin version=3.2.3 -1.5 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0007] 0.0 DNS_FROM_SECURITYSAGE RBL: Envelope sender in blackholes.securitysage.com Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org quick fixlet below - please double-check. ----------------> From 04f0c230107f2bdc9d0eaf7bdae9490eb3675791 Mon Sep 17 00:00:00 2001 From: Ingo Molnar Date: Sun, 12 Oct 2008 12:51:28 +0200 Subject: [PATCH] net, ipvs: fix build on !CONFIG_INET fix: net/netfilter/ipvs/ip_vs_xmit.c: In function 'ip_vs_tunnel_xmit': net/netfilter/ipvs/ip_vs_xmit.c:616: error: implicit declaration of function 'ip_select_ident' ip_vs_xmit depends on CONFIG_INET capabilities. Signed-off-by: Ingo Molnar --- net/netfilter/ipvs/Kconfig | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/net/netfilter/ipvs/Kconfig b/net/netfilter/ipvs/Kconfig index de6004d..a67a235 100644 --- a/net/netfilter/ipvs/Kconfig +++ b/net/netfilter/ipvs/Kconfig @@ -4,6 +4,7 @@ menuconfig IP_VS tristate "IP virtual server support (EXPERIMENTAL)" depends on NETFILTER + depends on INET ---help--- IP Virtual Server support will let you build a high-performance virtual server based on cluster of two or more real servers. This