From owner-freebsd-stable@FreeBSD.ORG Thu Apr 23 16:52:55 2009 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F867106566B for ; Thu, 23 Apr 2009 16:52:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 7A2258FC1D for ; Thu, 23 Apr 2009 16:52:55 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id EC94D46B5B; Thu, 23 Apr 2009 12:52:54 -0400 (EDT) Date: Thu, 23 Apr 2009 17:52:54 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Mike Tancsa In-Reply-To: <200904212057.n3LKv4i4092456@lava.sentex.ca> Message-ID: References: <200904210524.n3L5O9YS086865@lava.sentex.ca> <86vdox685s.fsf@kopusha.onet> <200904212057.n3LKv4i4092456@lava.sentex.ca> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-stable@freebsd.org, Mikolaj Golub Subject: Re: RELENG_7 crash X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Apr 2009 16:52:55 -0000 On Tue, 21 Apr 2009, Mike Tancsa wrote: > At 04:53 PM 4/21/2009, Mikolaj Golub wrote: > >> Just FYI, the same problem has already been registered in pr database as >> kern/132734. > > Thanks, > http://www.freebsd.org/cgi/query-pr.cgi?pr=132734 does look familiar > :) If you disable the snmpwalk, is the box stable ? It would be interesting to know if this tweak at least eliminates the instant panic: Index: if_mib.c =================================================================== --- if_mib.c (revision 191424) +++ if_mib.c (working copy) @@ -82,11 +82,9 @@ return EINVAL; if (name[0] <= 0 || name[0] > if_index || - ifnet_byindex(name[0]) == NULL) + (ifp = ifnet_byindex(name[0])) == NULL) return ENOENT; - ifp = ifnet_byindex(name[0]); - switch(name[1]) { default: return ENOENT; Robert N M Watson Computer Laboratory University of Cambridge