From owner-cvs-all@FreeBSD.ORG Thu Sep 20 21:21:41 2007 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED62A16A475; Thu, 20 Sep 2007 21:21:41 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4BC7213C673; Thu, 20 Sep 2007 21:21:01 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id l8KKcix1086740; Thu, 20 Sep 2007 20:38:44 GMT (envelope-from attilio@repoman.freebsd.org) Received: (from attilio@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id l8KKcix2086739; Thu, 20 Sep 2007 20:38:44 GMT (envelope-from attilio) Message-Id: <200709202038.l8KKcix2086739@repoman.freebsd.org> From: Attilio Rao Date: Thu, 20 Sep 2007 20:38:44 +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/amd64/include smp.h src/sys/i386/include smp.h src/sys/kern kern_switch.c kern_thread.c subr_witness.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: Thu, 20 Sep 2007 21:21:42 -0000 attilio 2007-09-20 20:38:44 UTC FreeBSD src repository Modified files: sys/amd64/include smp.h sys/i386/include smp.h sys/kern kern_switch.c kern_thread.c subr_witness.c Log: Fix some entries in the locks static table of witness. In particular: - smp_tlb_mtx is no longer used, so it is axed. - smp rendezvous lock isn't really a leaf spin-mutex. Its bad placement in the table, however, has been the source of a false positive LOR reporting with the dt_lock. However, smp rendezvous lock would have had sched_lock there for older lock, so it wasn't still a leaf lock. - allpmaps is only used in ia32 architecture, so it is inserted in the appropriate stub. Addictionally: - kse_zombie_lock is no longer present, so its definition is axed out. - zombie_lock doesn't need to have an exported symbol, so just let's it be declared as static. Tested by: kris Approved by: jeff (mentor) Approved by: re Revision Changes Path 1.91 +0 -1 src/sys/amd64/include/smp.h 1.90 +0 -1 src/sys/i386/include/smp.h 1.136 +0 -1 src/sys/kern/kern_switch.c 1.254 +1 -1 src/sys/kern/kern_thread.c 1.236 +8 -9 src/sys/kern/subr_witness.c