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
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to