From owner-svn-src-user@FreeBSD.ORG Thu May 21 04:44:22 2009 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33EA01065677; Thu, 21 May 2009 04:44:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 22E4D8FC14; Thu, 21 May 2009 04:44:22 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n4L4iLWu054860; Thu, 21 May 2009 04:44:21 GMT (envelope-from kmacy@svn.freebsd.org) Received: (from kmacy@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n4L4iLXI054859; Thu, 21 May 2009 04:44:21 GMT (envelope-from kmacy@svn.freebsd.org) Message-Id: <200905210444.n4L4iLXI054859@svn.freebsd.org> From: Kip Macy Date: Thu, 21 May 2009 04:44:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r192520 - user/kmacy/releng_7_2_fcs/sys/sys X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 May 2009 04:44:22 -0000 Author: kmacy Date: Thu May 21 04:44:21 2009 New Revision: 192520 URL: http://svn.freebsd.org/changeset/base/192520 Log: remove old style lpo definition Modified: user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Modified: user/kmacy/releng_7_2_fcs/sys/sys/_lock.h ============================================================================== --- user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Thu May 21 04:36:49 2009 (r192519) +++ user/kmacy/releng_7_2_fcs/sys/sys/_lock.h Thu May 21 04:44:21 2009 (r192520) @@ -31,28 +31,6 @@ #ifndef _SYS__LOCK_H_ #define _SYS__LOCK_H_ -struct lock_profile_object { - /* - * This does not result in variant structure sizes because - * MUTEX_PROFILING is in opt_global.h - */ - u_int64_t lpo_acqtime; - u_int64_t lpo_waittime; - const char *lpo_filename; - u_int lpo_namehash; - int lpo_lineno; - const char *lpo_type; - /* - * Fields relating to measuring contention on mutexes. - * holding must be accessed atomically since it's - * modified by threads that don't yet hold the mutex. - * locking is only modified and referenced while - * the mutex is held. - */ - u_int lpo_contest_holding; - u_int lpo_contest_locking; -}; - struct lock_object { const char *lo_name; /* Individual lock name. */ u_int lo_flags;