From owner-freebsd-bugs@FreeBSD.ORG Sat Jun 26 20:01:09 2004 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D2FC16A4CE for ; Sat, 26 Jun 2004 20:01:09 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432C943D49 for ; Sat, 26 Jun 2004 20:01:09 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i5QK0dl3088492 for ; Sat, 26 Jun 2004 20:00:39 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i5QK0dkk088491; Sat, 26 Jun 2004 20:00:39 GMT (envelope-from gnats) Date: Sat, 26 Jun 2004 20:00:39 GMT Message-Id: <200406262000.i5QK0dkk088491@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Giorgos Keramidas Subject: Re: kern/67213: Kernel Panic on bootup from latest cvsup X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Giorgos Keramidas List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Jun 2004 20:01:09 -0000 The following reply was made to PR kern/67213; it has been noted by GNATS. From: Giorgos Keramidas To: Bruce M Simpson Cc: drew@corrupt.co.nz, bug-followup@freebsd.org Subject: Re: kern/67213: Kernel Panic on bootup from latest cvsup Date: Sat, 26 Jun 2004 22:07:26 +0300 On 2004-06-23 06:55, Bruce M Simpson wrote: > State-Changed-From-To: open->feedback > State-Changed-When: Wed Jun 23 06:54:39 GMT 2004 > Please build a kernel with symbols and DDB, and obtain a full > backtrace. Or update your sources to a newer version. There were a few hiccups during the last few days related to ipfilter too. If you're seeing ipf-related panics when IPFILTER is initialized at boot time, try this patch for file `/usr/src/sys/contrib/ipfilter/netinet/fil.c': %% Index: fil.c =================================================================== RCS file: /home/ncvs/src/sys/contrib/ipfilter/netinet/fil.c,v retrieving revision 1.38 diff -u -r1.38 fil.c --- fil.c 21 Jun 2004 22:46:35 -0000 1.38 +++ fil.c 24 Jun 2004 19:17:33 -0000 @@ -2155,9 +2155,6 @@ ip_natsync(ifp); ip_statesync(ifp); } -# if defined(__FreeBSD_version) && (__FreeBSD_version >= 500043) - IFNET_RUNLOCK(); -# endif ip_natsync((struct ifnet *)-1); # if defined(__FreeBSD_version) && (__FreeBSD_version >= 500043) IFNET_RUNLOCK(); %%