Date: Mon, 8 Jul 2013 21:17:21 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253047 - head/sys/kern Message-ID: <201307082117.r68LHL9O020935@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Mon Jul 8 21:17:20 2013 New Revision: 253047 URL: http://svnweb.freebsd.org/changeset/base/253047 Log: Fix build with INVARIANT_SUPPORT enabled but not INVARIANTS. Reported by: "Matthew D. Fuller" <fullermd@over-yonder.net> Modified: head/sys/kern/kern_rmlock.c Modified: head/sys/kern/kern_rmlock.c ============================================================================== --- head/sys/kern/kern_rmlock.c Mon Jul 8 21:10:30 2013 (r253046) +++ head/sys/kern/kern_rmlock.c Mon Jul 8 21:17:20 2013 (r253047) @@ -704,6 +704,10 @@ _rm_runlock_debug(struct rmlock *rm, str #endif #ifdef INVARIANT_SUPPORT +#ifndef INVARIANTS +#undef _rm_assert +#endif + /* * Note that this does not need to use witness_assert() for read lock * assertions since an exact count of read locks held by this thread
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307082117.r68LHL9O020935>