From owner-cvs-all@FreeBSD.ORG Sun Jan 9 05:34:37 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D334216A4CE; Sun, 9 Jan 2005 05:34:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1BE143D1F; Sun, 9 Jan 2005 05:34:37 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j095YbcE042973; Sun, 9 Jan 2005 05:34:37 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j095Ybo1042972; Sun, 9 Jan 2005 05:34:37 GMT (envelope-from rwatson) Message-Id: <200501090534.j095Ybo1042972@repoman.freebsd.org> From: Robert Watson Date: Sun, 9 Jan 2005 05:34:37 +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/netipx ipx.c ipx_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 05:34:38 -0000 rwatson 2005-01-09 05:34:37 UTC FreeBSD src repository Modified files: sys/netipx ipx.c ipx_input.c Log: Recent changes have locked down most of the highly dynamic data structures in IPX/SPX -- primarily, sequence numbering, PCB lists, and PCBs for IPX raw sockets, IPX datagram sockets, and IPX/SPX. As such, remove remove NET_NEEDS_GIANT() for IPX, and remove the assertion of Giant in the ipxintr() IPX input path. Note that IPX/SPX is not fully MPSAFE, and that there are some problems with IPX/SPX locking that will require some further work. However, it is now safe enough to run in general without the Giant lock. MFC after: 4 weeks Revision Changes Path 1.30 +0 -2 src/sys/netipx/ipx.c 1.49 +0 -2 src/sys/netipx/ipx_input.c