Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Oct 2012 11:10:14 +0000 (UTC)
From:      Marius Strobl <marius@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r241878 - stable/9/sys/sparc64/sparc64
Message-ID:  <201210221110.q9MBAEMI097752@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Mon Oct 22 11:10:14 2012
New Revision: 241878
URL: http://svn.freebsd.org/changeset/base/241878

Log:
  MFC: r241740
  
  - Remove an unused header.
  - Don't waste a delay slot.

Modified:
  stable/9/sys/sparc64/sparc64/interrupt.S
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/9/sys/sparc64/sparc64/interrupt.S
==============================================================================
--- stable/9/sys/sparc64/sparc64/interrupt.S	Mon Oct 22 11:07:59 2012	(r241877)
+++ stable/9/sys/sparc64/sparc64/interrupt.S	Mon Oct 22 11:10:14 2012	(r241878)
@@ -30,7 +30,6 @@ __FBSDID("$FreeBSD$");
 #include <machine/asi.h>
 #include <machine/asmacros.h>
 #include <machine/intr_machdep.h>
-#include <machine/ktr.h>
 #include <machine/pstate.h>
 #include <machine/ver.h>
 
@@ -84,13 +83,13 @@ ENTRY(intr_vector)
 	 * The 2nd word points to code to execute and the 3rd is an argument
 	 * to pass.  Jump to it.
 	 */
-	brnz,pt %g3, 1f
+	brnz,a,pt %g3, 1f
+	 srlx	%g3, 60, %g6
 	/*
 	 * NB: Zeus CPUs set some undocumented bits in the first data word.
 	 */
-	 and	%g3, IV_MAX - 1, %g3
 	jmpl	%g4, %g0
-	 nop
+	 and	%g3, IV_MAX - 1, %g3
 	/* NOTREACHED */
 
 	/*
@@ -99,8 +98,7 @@ ENTRY(intr_vector)
 	 * 4 bits of the 1st data word specify a priority, and the 2nd and
 	 * 3rd a function and argument.
 	 */
-1:	srlx	%g3, 60, %g6
-	brnz,a,pn %g6, 2f
+1:	brnz,a,pn %g6, 2f
 	 clr	%g3
 
 	/*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201210221110.q9MBAEMI097752>