From owner-freebsd-bugs@FreeBSD.ORG Fri Nov 11 15:10:25 2005 Return-Path: X-Original-To: freebsd-bugs@hub.freebsd.org 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 AB42716A41F for ; Fri, 11 Nov 2005 15:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5167F43D45 for ; Fri, 11 Nov 2005 15:10:22 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id jABFAMEm062937 for ; Fri, 11 Nov 2005 15:10:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id jABFAM5M062936; Fri, 11 Nov 2005 15:10:22 GMT (envelope-from gnats) Date: Fri, 11 Nov 2005 15:10:22 GMT Message-Id: <200511111510.jABFAM5M062936@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Mark Tinguely Cc: Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mark Tinguely List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2005 15:10:25 -0000 The following reply was made to PR kern/88725; it has been noted by GNATS. From: Mark Tinguely To: bug-followup@freebsd.org, snezhko@indorsoft.ru Cc: Subject: Re: kern/88725: /usr/sbin/ppp panic with 2005.10.21 netinet6 changes Date: Fri, 11 Nov 2005 09:04:50 -0600 (CST) I think this patch should be applied. The other callouts that I flagged are too inconclusive to make any modification at this time. I am working with another person with a callout panic that is simular to this panic, but he does not use IPv6. --- netinet6/mld6.c Wed Nov 9 08:27:14 2005 *************** *** 640,645 **** --- 640,649 ---- mld6_stop_listening(in6m); ifma->ifma_protospec = NULL; LIST_REMOVE(in6m, in6m_entry); + if (in6m->in6m_timer != IN6M_TIMER_UNDEF) + mld_stoptimer(in6m); free(in6m->in6m_timer_ch, M_IP6MADDR); free(in6m, M_IP6MADDR); } --Mark Tinguely