From owner-cvs-src-old@FreeBSD.ORG Tue Jan 11 17:29:50 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2446A10656C6 for ; Tue, 11 Jan 2011 17:29:50 +0000 (UTC) (envelope-from mdf@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 12B508FC22 for ; Tue, 11 Jan 2011 17:29:50 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p0BHTnIC072676 for ; Tue, 11 Jan 2011 17:29:49 GMT (envelope-from mdf@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p0BHTnoQ072675 for cvs-src-old@freebsd.org; Tue, 11 Jan 2011 17:29:49 GMT (envelope-from mdf@repoman.freebsd.org) Message-Id: <201101111729.p0BHTnoQ072675@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mdf@repoman.freebsd.org using -f From: Matthew D Fleming Date: Tue, 11 Jan 2011 17:29:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/sys/kern kern_fail.c src/sys/sys fail.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2011 17:29:50 -0000 mdf 2011-01-11 17:29:34 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) sys/kern kern_fail.c sys/sys fail.h Log: SVN rev 217270 on 2011-01-11 17:29:34Z by mdf (Note the previous commit was a MFC of r216616). MFC r216620: Initialize fp_location for explicitly managed fail points, and push the parentheses around the location for simple fail points into the location string. This makes the print on fail point set more consistent between the two versions. Also fix up fail.h a little for style(9): only use one of sys/param.h and sys/types.h, and use the existing __XSTRING() macro instead of rolling our own. Also fix up a few tabs on changed and nearby lines. Lastly, since KFAIL_POINT_{BEGIN,END} are not meant for use outside this file, just eliminate the macros entirely. Revision Changes Path 1.1.2.4 +3 -2 src/sys/kern/kern_fail.c 1.1.2.3 +31 -44 src/sys/sys/fail.h