[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(usagi-users 03679) Re: IPv6 multicast routing in Linux 2.6.16.18 + USAGI
On Tue, May 30, 2006 at 09:00:57PM +0900, YOSHIFUJI Hideaki / åèèæ wrote:
> Hello.
>
> In article <20060524052548.GC17587@xxxxxxxx> (at Wed, 24 May 2006 00:25:48 -0500), Otto Solares <solca@xxxxxxxx> says:
>
> > I am running 2.6.16.18 + latest USAGI kernel patch, I'm
> > implementing IPv6 multicast routing.
> :
> > KERNEL: assertion (newskb->dst) failed at net/ipv6/ip6_output.c (113)
>
> Thanks for the report.
>
> I'm not sure the following patch is related to your report,
> but anyway, please try it.
No, still get the kernel assertion from ip6_dev_loopback_xmit
in ip6_output.c called by ip6_output2:
/* Do not check for IFF_ALLMULTI; multicast
* routing is not supported in any case.
*/
if (newskb)
NF_HOOK(PF_INET6, NF_IP6_POST_ROUTING, newskb, NULL,
newskb->dev,
ip6_dev_loopback_xmit);
I'm wondering if it is harmless as it appears related to netfilter
which is in it's default policies of ACCEPT.
-otto