From owner-cvs-src@FreeBSD.ORG Fri Feb 27 10:39:10 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 6E5A116A613; Fri, 27 Feb 2004 10:39:10 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5054843D2D; Fri, 27 Feb 2004 10:39:10 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1RId9Ge026298; Fri, 27 Feb 2004 10:39:09 -0800 (PST) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1RId9Px026297; Fri, 27 Feb 2004 10:39:09 -0800 (PST) (envelope-from jhb) Message-Id: <200402271839.i1RId9Px026297@repoman.freebsd.org> From: John Baldwin Date: Fri, 27 Feb 2004 10:39:09 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_exit.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, 27 Feb 2004 18:39:10 -0000 jhb 2004/02/27 10:39:09 PST FreeBSD src repository Modified files: sys/kern kern_exit.c Log: Drop sched_lock around the wakeup of the parent process after setting the process state to zombie when a process exits to avoid a lock order reversal with the sleepqueue locks. This appears to be the only place that we call wakeup() with sched_lock held. Revision Changes Path 1.223 +9 -4 src/sys/kern/kern_exit.c