From owner-svn-src-all@FreeBSD.ORG Fri Feb 19 15:10:05 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C93C51065670; Fri, 19 Feb 2010 15:10:05 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B8F568FC16; Fri, 19 Feb 2010 15:10:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o1JFA5sJ019850; Fri, 19 Feb 2010 15:10:05 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1JFA5LC019848; Fri, 19 Feb 2010 15:10:05 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201002191510.o1JFA5LC019848@svn.freebsd.org> From: Attilio Rao Date: Fri, 19 Feb 2010 15:10:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204089 - head/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Feb 2010 15:10:05 -0000 Author: attilio Date: Fri Feb 19 15:10:05 2010 New Revision: 204089 URL: http://svn.freebsd.org/changeset/base/204089 Log: Use the cached value within comparison. Submitted by: jhb Modified: head/sys/kern/kern_kthread.c Modified: head/sys/kern/kern_kthread.c ============================================================================== --- head/sys/kern/kern_kthread.c Fri Feb 19 15:03:55 2010 (r204088) +++ head/sys/kern/kern_kthread.c Fri Feb 19 15:10:05 2010 (r204089) @@ -317,7 +317,7 @@ kthread_exit(void) /* A module may be waiting for us to exit. */ wakeup(curthread); PROC_LOCK(p); - if (curthread->td_proc->p_numthreads == 1) { + if (p->p_numthreads == 1) { PROC_UNLOCK(p); kproc_exit(0);