From owner-svn-src-all@FreeBSD.ORG Sat Jun 1 11:31:10 2013 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D143F7FE; Sat, 1 Jun 2013 11:31:10 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 33B9DBF4; Sat, 1 Jun 2013 11:31:10 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r51BVAso066368; Sat, 1 Jun 2013 11:31:10 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r51BVAI8066367; Sat, 1 Jun 2013 11:31:10 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201306011131.r51BVAI8066367@svn.freebsd.org> From: John Baldwin Date: Sat, 1 Jun 2013 11:31:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251220 - head/sys/sys X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 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: Sat, 01 Jun 2013 11:31:10 -0000 Author: jhb Date: Sat Jun 1 11:31:09 2013 New Revision: 251220 URL: http://svnweb.freebsd.org/changeset/base/251220 Log: Remove an unused macro we originally got from BSD/OS. Modified: head/sys/sys/mutex.h Modified: head/sys/sys/mutex.h ============================================================================== --- head/sys/sys/mutex.h Sat Jun 1 11:14:35 2013 (r251219) +++ head/sys/sys/mutex.h Sat Jun 1 11:31:09 2013 (r251220) @@ -426,12 +426,6 @@ do { \ } #endif -#define UGAR(rval) do { \ - int _val = (rval); \ - mtx_unlock(&Giant); \ - return (_val); \ -} while (0) - struct mtx_args { void *ma_mtx; const char *ma_desc;