Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 20 Jun 2005 16:37:09 -0700
From:      Paul Querna <pquerna@apache.org>
To:        freebsd-current@freebsd.org
Cc:        q@onthenet.com.au, joeldiaz@nc.rr.com, martin.mato@wanadoo.fr
Subject:   Re: Panic with nve
Message-ID:  <42B75325.3060906@apache.org>
In-Reply-To: <42ACE639.8030509@apache.org>
References:  <42ACE639.8030509@apache.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Paul Querna wrote.
....

Following change stops all panics for me.  I don't see the code path 
where m0 will be a free'ed mbuf at this point.  This change doesn't fix 
the problem, but it at least stops the machine from crashing every few 
minutes :)

--- if_nve.bork.c       Mon Jun 20 16:38:57 2005
+++ if_nve.c    Mon Jun 20 13:34:52 2005
@@ -935,7 +935,7 @@
                ifp->if_timer = 8;

                /* Copy packet to BPF tap */
-               BPF_MTAP(ifp, m0);
+               /* BPF_MTAP(ifp, m0); */
        }
        ifp->if_flags |= IFF_OACTIVE;


-Paul



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?42B75325.3060906>