svn commit: r207520 - stable/8/sys/sparc64/sparc64
Marius Strobl
marius at FreeBSD.org
Sun May 2 16:45:08 UTC 2010
Author: marius
Date: Sun May 2 16:45:08 2010
New Revision: 207520
URL: http://svn.freebsd.org/changeset/base/207520
Log:
MFC: r206449
Unlike the sun4v variant, the sun4u version of SUNW,set-trap-table
actually only takes one argument.
Modified:
stable/8/sys/sparc64/sparc64/trap.c
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)
stable/8/sys/dev/xen/xenpci/ (props changed)
stable/8/sys/geom/sched/ (props changed)
Modified: stable/8/sys/sparc64/sparc64/trap.c
==============================================================================
--- stable/8/sys/sparc64/sparc64/trap.c Sun May 2 16:44:06 2010 (r207519)
+++ stable/8/sys/sparc64/sparc64/trap.c Sun May 2 16:45:08 2010 (r207520)
@@ -260,7 +260,8 @@ sun4u_set_traptable(void *tba_addr)
cell_t tba_addr;
} args = {
(cell_t)"SUNW,set-trap-table",
- 2,
+ 1,
+ 0,
};
args.tba_addr = (cell_t)tba_addr;
More information about the svn-src-stable
mailing list