From owner-cvs-src@FreeBSD.ORG Fri Aug 6 03:45:45 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E9116A4CE; Fri, 6 Aug 2004 03:45:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A9A43D1D; Fri, 6 Aug 2004 03:45:45 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i763jj3e096276; Fri, 6 Aug 2004 03:45:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i763jjgc096275; Fri, 6 Aug 2004 03:45:45 GMT (envelope-from rwatson) Message-Id: <200408060345.i763jjgc096275@repoman.freebsd.org> From: Robert Watson Date: Fri, 6 Aug 2004 03:45:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_subr.c src/sys/netinet6 in6_pcb.c in6_pcb.h raw_ip6.c udp6_usrreq.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Aug 2004 03:45:46 -0000 rwatson 2004-08-06 03:45:45 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c sys/netinet6 in6_pcb.c in6_pcb.h raw_ip6.c udp6_usrreq.c Log: Pass pcbinfo structures to in6_pcbnotify() rather than pcbhead structures, allowing in6_pcbnotify() to lock the pcbinfo and each inpcb that it notifies of ICMPv6 events. This prevents inpcb assertions from firing when IPv6 generates and delievers event notifications for inpcbs. Reported by: kuriyama Tested by: kuriyama Revision Changes Path 1.197 +2 -2 src/sys/netinet/tcp_subr.c 1.58 +14 -4 src/sys/netinet6/in6_pcb.c 1.15 +1 -1 src/sys/netinet6/in6_pcb.h 1.44 +2 -1 src/sys/netinet6/raw_ip6.c 1.51 +2 -2 src/sys/netinet6/udp6_usrreq.c