From patchwork Thu Jan 20 17:53:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Dumazet X-Patchwork-Id: 79742 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 0ECD0B7106 for ; Fri, 21 Jan 2011 04:54:19 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753295Ab1ATRyM (ORCPT ); Thu, 20 Jan 2011 12:54:12 -0500 Received: from mail-ey0-f174.google.com ([209.85.215.174]:60699 "EHLO mail-ey0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750844Ab1ATRyK (ORCPT ); Thu, 20 Jan 2011 12:54:10 -0500 Received: by eye27 with SMTP id 27so427428eye.19 for ; Thu, 20 Jan 2011 09:54:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:subject:from:to:cc:content-type:date:message-id :mime-version:x-mailer:content-transfer-encoding; bh=xymC8thKNB6ZTFvREsDvNLB/JNQ95PB0CTIzO2hDDgU=; b=ip00sOM5DdXtwrKtk1vt8fF+YV0TufNqsufb5xL7WIc3wt1gDw10w/U9qt9S1fTIO5 8dm5WmoLh6SHfAmHlorOu2ppB3PbigSonC1l47FYkjDuvyUrFjTbjz/iLV1C/sArYLly bq1rFUWxCXmisRLeuc5T1Ha+je0sG+RcG7PBc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; b=rWcJOcgsLWadsjaVGnmqSggLxGSrS4rJjeF/sGxlyGoVO+PbfM4NO3jo8YM5O7JmLm BG3Ep/YpiHSBFY9tV8B9rArXdYOOw7VuA6Df1+NkMW2AyLZaSjEjhP3zWHIDxM2u5err 5YdxdebwOHUJmI0UVvC3JtCvuEMYDh+YEYX6Y= Received: by 10.216.62.212 with SMTP id y62mr2645056wec.9.1295546000635; Thu, 20 Jan 2011 09:53:20 -0800 (PST) Received: from [10.150.51.210] (gw0.net.jmsp.net [212.23.165.14]) by mx.google.com with ESMTPS id x3sm4385570wes.46.2011.01.20.09.53.19 (version=SSLv3 cipher=RC4-MD5); Thu, 20 Jan 2011 09:53:19 -0800 (PST) Subject: [PATCH] netfilter: add a missing include in nf_conntrack_reasm.c From: Eric Dumazet To: Patrick McHardy Cc: Netfilter Development Mailinglist , netdev , KOVACS Krisztian Date: Thu, 20 Jan 2011 18:53:17 +0100 Message-ID: <1295545997.2825.458.camel@edumazet-laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org After commit ae90bdeaeac6b (netfilter: fix compilation when conntrack is disabled but tproxy is enabled) we have following warnings : net/ipv6/netfilter/nf_conntrack_reasm.c:520:16: warning: symbol 'nf_ct_frag6_gather' was not declared. Should it be static? net/ipv6/netfilter/nf_conntrack_reasm.c:591:6: warning: symbol 'nf_ct_frag6_output' was not declared. Should it be static? net/ipv6/netfilter/nf_conntrack_reasm.c:612:5: warning: symbol 'nf_ct_frag6_init' was not declared. Should it be static? net/ipv6/netfilter/nf_conntrack_reasm.c:640:6: warning: symbol 'nf_ct_frag6_cleanup' was not declared. Should it be static? Fix this including net/netfilter/ipv6/nf_defrag_ipv6.h Signed-off-by: Eric Dumazet CC: KOVACS Krisztian --- net/ipv6/netfilter/nf_conntrack_reasm.c | 1 + 1 file changed, 1 insertion(+) -- 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/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index 66e003e..0857272 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c @@ -45,6 +45,7 @@ #include #include #include +#include struct nf_ct_frag6_skb_cb