Hi,
Thanks for the detailed report. Can you try the attached patch?
cheers,
Lennert
--- linux-2.4.15-3um/net/bridge/br_netfilter.c.orig Sun Dec 9 00:01:57 2001
+++ linux-2.4.15-3um/net/bridge/br_netfilter.c Sun Dec 9 00:01:51 2001
@@ -282,6 +282,12 @@
if (skb->mac.ethernet->h_proto != __constant_htons(ETH_P_IP))
return NF_ACCEPT;
+ /* Sometimes we get packets with NULL ->dst here (for example,
+ * running a dhcp client daemon triggers this).
+ */
+ if (skb->dst == NULL)
+ return NF_ACCEPT;
+
dprintk(KERN_NOTICE "br_nf_local_out.. ");
skb->physoutdev = skb->dev;
On Sat, Dec 08, 2001 at 01:53:29PM -0800, Leif Huhn wrote:
> Hi,
>
> When I run "dhcpcd -d -h C1251153-A br0" I get the following Oops.
> Don't ask my why the tulip driver doesn't match...I have no idea, it's
> the same module I was using. I believe that I also got oopses with
> 0.0.3 when I ran dhcpcd.
>
_______________________________________________
Bridge mailing list
[EMAIL PROTECTED]
http://www.math.leidenuniv.nl/mailman/listinfo/bridge