svn commit: r230681 - stable/8/sys/sparc64/sparc64

Marius Strobl marius at FreeBSD.org
Sat Jan 28 23:33:54 UTC 2012


Author: marius
Date: Sat Jan 28 23:33:53 2012
New Revision: 230681
URL: http://svn.freebsd.org/changeset/base/230681

Log:
  MFC: r225899
  
  Also allocate space for the PIL counters. Given that no machine actually
  uses IV_MAX interrupt vectors this wasn't a problem in practice though.

Modified:
  stable/8/sys/sparc64/sparc64/exception.S
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/sparc64/sparc64/exception.S
==============================================================================
--- stable/8/sys/sparc64/sparc64/exception.S	Sat Jan 28 23:33:50 2012	(r230680)
+++ stable/8/sys/sparc64/sparc64/exception.S	Sat Jan 28 23:33:53 2012	(r230681)
@@ -373,11 +373,11 @@ END(rsf_fatal)
 	_ALIGN_DATA
 	.globl	intrnames, eintrnames
 intrnames:
-	.space	IV_MAX * (MAXCOMLEN + 1)
+	.space	(IV_MAX + PIL_MAX) * (MAXCOMLEN + 1)
 eintrnames:
 	.globl	intrcnt, eintrcnt
 intrcnt:
-	.space	IV_MAX * 8
+	.space	(IV_MAX + PIL_MAX) * 8
 eintrcnt:
 
 	.text


More information about the svn-src-stable mailing list