From owner-cvs-all@FreeBSD.ORG Fri Feb 23 22:39:26 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDD6E16A400; Fri, 23 Feb 2007 22:39:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id CD02A13C4A6; Fri, 23 Feb 2007 22:39:26 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l1NMdQlI022762; Fri, 23 Feb 2007 22:39:26 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l1NMdQLK022761; Fri, 23 Feb 2007 22:39:26 GMT (envelope-from netchild) Message-Id: <200702232239.l1NMdQLK022761@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 23 Feb 2007 22:39:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/i386/linux linux_machdep.c src/sys/compat/linux linux_emul.c linux_misc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Fri, 23 Feb 2007 22:39:27 -0000 netchild 2007-02-23 22:39:26 UTC FreeBSD src repository Modified files: sys/i386/linux linux_machdep.c sys/compat/linux linux_emul.c linux_misc.c Log: MFp4 (114193 (i386 part), 114194, 114195, 114200): - Dont "return" in linux_clone() after we forked the new process in a case of problems. - Move the copyout of p2->p_pid outside the emul_lock coverage in linux_clone(). - Cache the em->pdeath_signal in a local variable and move the copyout out of the emul_lock coverage. - Move the free() out of the emul_shared_lock coverage in a preparation to switch emul_lock to non-sleepable lock (mutex). Submitted by: rdivacky Revision Changes Path 1.17 +8 -4 src/sys/compat/linux/linux_emul.c 1.207 +5 -3 src/sys/compat/linux/linux_misc.c 1.71 +40 -37 src/sys/i386/linux/linux_machdep.c