From owner-cvs-src@FreeBSD.ORG Fri Jan 19 11:15:34 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA08A16A416; Fri, 19 Jan 2007 11:15:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9709313C47E; Fri, 19 Jan 2007 11:15:34 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l0JBFYCJ047814; Fri, 19 Jan 2007 11:15:34 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l0JBFY17047813; Fri, 19 Jan 2007 11:15:34 GMT (envelope-from marius) Message-Id: <200701191115.l0JBFY17047813@repoman.freebsd.org> From: Marius Strobl Date: Fri, 19 Jan 2007 11:15:34 +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/sparc64/include cache.h frame.h fsr.h intr_machdep.h pcb.h tsb.h src/sys/sparc64/sparc64 exception.S genassym.c interrupt.S mp_exception.S mp_locore.S support.S swtch.S src/sys/sun4v/include frame.h fsr.h intr_machdep.h pcb.h ... X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Jan 2007 11:15:34 -0000 marius 2007-01-19 11:15:34 UTC FreeBSD src repository Modified files: sys/sparc64/include cache.h frame.h fsr.h intr_machdep.h pcb.h tsb.h sys/sparc64/sparc64 exception.S genassym.c interrupt.S mp_exception.S mp_locore.S support.S swtch.S sys/sun4v/include frame.h fsr.h intr_machdep.h pcb.h utrap.h sys/sun4v/sun4v exception.S interrupt.S mp_locore.S support.S swtch.S wbuf.S Log: Convert the remainder of the low hanging fruits regarding including headers in .S directly rather than getting to their macros through genassym.c/assym.s so there are less headers genassym.c has to be kept in sync with. While at it fix some stytle(9) bugs (indentation, prototype format, sort headers, etc) and remove trailing whitespace. Revision Changes Path 1.13 +8 -2 src/sys/sparc64/include/cache.h 1.17 +5 -1 src/sys/sparc64/include/frame.h 1.4 +4 -0 src/sys/sparc64/include/fsr.h 1.15 +7 -3 src/sys/sparc64/include/intr_machdep.h 1.18 +7 -1 src/sys/sparc64/include/pcb.h 1.19 +14 -5 src/sys/sparc64/include/tsb.h 1.74 +6 -0 src/sys/sparc64/sparc64/exception.S 1.69 +22 -96 src/sys/sparc64/sparc64/genassym.c 1.10 +1 -0 src/sys/sparc64/sparc64/interrupt.S 1.13 +2 -1 src/sys/sparc64/sparc64/mp_exception.S 1.8 +1 -0 src/sys/sparc64/sparc64/mp_locore.S 1.32 +5 -0 src/sys/sparc64/sparc64/support.S 1.34 +2 -0 src/sys/sparc64/sparc64/swtch.S 1.2 +5 -1 src/sys/sun4v/include/frame.h 1.2 +4 -0 src/sys/sun4v/include/fsr.h 1.2 +11 -10 src/sys/sun4v/include/intr_machdep.h 1.3 +7 -1 src/sys/sun4v/include/pcb.h 1.3 +1 -1 src/sys/sun4v/include/utrap.h 1.14 +9 -5 src/sys/sun4v/sun4v/exception.S 1.10 +4 -3 src/sys/sun4v/sun4v/interrupt.S 1.3 +3 -1 src/sys/sun4v/sun4v/mp_locore.S 1.5 +7 -4 src/sys/sun4v/sun4v/support.S 1.2 +3 -1 src/sys/sun4v/sun4v/swtch.S 1.6 +3 -3 src/sys/sun4v/sun4v/wbuf.S