From owner-cvs-sys Wed Dec 24 23:05:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id XAA26451 for cvs-sys-outgoing; Wed, 24 Dec 1997 23:05:39 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id XAA26176; Wed, 24 Dec 1997 23:01:27 -0800 (PST) (envelope-from davidg@FreeBSD.org) From: David Greenman Received: (from davidg@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id WAA10378; Wed, 24 Dec 1997 22:57:39 -0800 (PST) Date: Wed, 24 Dec 1997 22:57:39 -0800 (PST) Message-Id: <199712250657.WAA10378@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/netinet in_pcb.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk davidg 1997/12/24 22:57:38 PST Modified files: sys/netinet in_pcb.c Log: The spl fixes in in_setsockaddr and in_setpeeraddr that were meant to fix PR#3618 weren't sufficient since malloc() can block - allowing the net interrupts in and leading to the same problem mentioned in the PR (a panic). The order of operations has been changed so that this is no longer a problem. Needs to be brought into the 2.2.x branch. PR: 3618 Revision Changes Path 1.37 +17 -11 src/sys/netinet/in_pcb.c