Received: with ECARTIS (v1.0.0; list netdev); Fri, 31 Dec 2004 07:02:36 -0800 (PST) Received: from mx03.cybersurf.com (mx03.cybersurf.com [209.197.145.106]) by oss.sgi.com (8.13.0/8.13.0) with ESMTP id iBVF29gd030931 for ; Fri, 31 Dec 2004 07:02:29 -0800 Received: from mail.cyberus.ca ([209.197.145.21]) by mx03.cybersurf.com with esmtp (Exim 4.30) id 1CkOQN-0000Vb-7j for netdev@oss.sgi.com; Fri, 31 Dec 2004 10:10:43 -0500 Received: from cpe0030ab124d2f-cm014500000962.cpe.net.cable.rogers.com ([24.103.99.32] helo=[10.0.0.9]) by mail.cyberus.ca with esmtp (Exim 4.20) id 1CkOQK-0003Go-Cu; Fri, 31 Dec 2004 10:10:40 -0500 Subject: Re: ing_filter debug messages From: jamal Reply-To: hadi@cyberus.ca To: Wichert Akkerman Cc: netdev@oss.sgi.com In-Reply-To: <20041231131553.GA7460@wiggy.net> References: <20041230160643.GD24603@wiggy.net> <1104469666.1049.231.camel@jzny.localdomain> <20041231093827.GG24603@wiggy.net> <1104491510.1047.234.camel@jzny.localdomain> <20041231131553.GA7460@wiggy.net> Content-Type: multipart/mixed; boundary="=-XcQdU1SCo9jgv+Y8JYL7" Organization: jamalopolous Message-Id: <1104505838.1048.273.camel@jzny.localdomain> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 31 Dec 2004 10:10:38 -0500 X-Virus-Scanned: ClamAV 0.80/645/Mon Dec 27 14:56:20 2004 clamav-milter version 0.80j on 127.0.0.1 X-Virus-Status: Clean X-archive-position: 13299 X-ecartis-version: Ecartis v1.0.0 Sender: netdev-bounce@oss.sgi.com Errors-to: netdev-bounce@oss.sgi.com X-original-sender: hadi@cyberus.ca Precedence: bulk X-list: netdev --=-XcQdU1SCo9jgv+Y8JYL7 Content-Type: text/plain Content-Transfer-Encoding: 7bit Wichert, Try also the attached patch with netfilter on and your rules installed. cheers, jamal --=-XcQdU1SCo9jgv+Y8JYL7 Content-Disposition: attachment; filename=indev2-p Content-Type: text/plain; name=indev2-p; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit --- a/net/ipv4/ip_output.c 2004/12/31 14:26:08 1.1 +++ b/net/ipv4/ip_output.c 2004/12/31 14:27:53 @@ -111,6 +111,7 @@ #ifdef CONFIG_NETFILTER_DEBUG nf_debug_ip_loopback_xmit(newskb); #endif + newskb->input_dev = newskb->dev; netif_rx(newskb); return 0; } --- a/net/ipv6/ip6_output.c 2004-12-24 16:33:51.000000000 -0500 +++ b/net/ipv6/ip6_output.c 2004-12-31 10:29:47.505392096 -0500 @@ -102,7 +102,7 @@ newskb->pkt_type = PACKET_LOOPBACK; newskb->ip_summed = CHECKSUM_UNNECESSARY; BUG_TRAP(newskb->dst); - + newskb->input_dev = newskb->dev; netif_rx(newskb); return 0; } --=-XcQdU1SCo9jgv+Y8JYL7--