Date: Wed, 11 Apr 2007 18:39:03 GMT From: Oleksandr Tymoshenko <gonzo@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 117913 for review Message-ID: <200704111839.l3BId3gS037816@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=117913 Change 117913 by gonzo@gonzo_jeeves on 2007/04/11 18:38:40 o Move intrname/eintrnames and intrcount/eintrcount from support.S to exception.S Affected files ... .. //depot/projects/mips2/src/sys/mips/mips/exception.S#23 edit .. //depot/projects/mips2/src/sys/mips/mips/support.S#11 edit Differences ... ==== //depot/projects/mips2/src/sys/mips/mips/exception.S#23 (text+ko) ==== @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/mips2/src/sys/mips/mips/exception.S#22 $ + * $P4: //depot/projects/mips2/src/sys/mips/mips/exception.S#23 $ */ /* $NetBSD: mipsX_subr.S,v 1.19 2005/12/11 12:18:09 christos Exp $ */ @@ -956,3 +956,20 @@ END(save_kdbaux) #endif /* DDB */ +/* + * intrnames/eintrnames, intrcnt/eintrcnt + */ + .data + .globl intrcnt + .globl eintrcnt +intrcnt: + .space (NHARD_IRQS + NSOFT_IRQS) * 4 +eintrcnt: + + + .globl intrnames +intrnames: + .space (NHARD_IRQS + NSOFT_IRQS) * (MAXCOMLEN + 1) + + .globl eintrnames +eintrnames: ==== //depot/projects/mips2/src/sys/mips/mips/support.S#11 (text+ko) ==== @@ -434,22 +434,4 @@ END(fswberr) -/* - * XXXMIPS: - */ - .data - .globl intrcnt - .globl eintrcnt -intrcnt: - .space 1 -eintrcnt: - .space 2 - - - .globl intrnames - .globl eintrnames -intrnames: - .space 3 -eintrnames: - .space 4
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200704111839.l3BId3gS037816>