Date: Sat, 28 Jan 2012 23:33:53 +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-8@freebsd.org Subject: svn commit: r230681 - stable/8/sys/sparc64/sparc64 Message-ID: <201201282333.q0SNXraS004523@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201282333.q0SNXraS004523>