Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 May 2010 16:45:09 +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-7@freebsd.org
Subject:   svn commit: r207521 - stable/7/sys/sparc64/sparc64
Message-ID:  <201005021645.o42Gj9Lj015716@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marius
Date: Sun May  2 16:45:09 2010
New Revision: 207521
URL: http://svn.freebsd.org/changeset/base/207521

Log:
  MFC: r206449
  
  Unlike the sun4v variant, the sun4u version of SUNW,set-trap-table
  actually only takes one argument.

Modified:
  stable/7/sys/sparc64/sparc64/trap.c
Directory Properties:
  stable/7/sys/   (props changed)
  stable/7/sys/cddl/contrib/opensolaris/   (props changed)
  stable/7/sys/contrib/dev/acpica/   (props changed)
  stable/7/sys/contrib/pf/   (props changed)

Modified: stable/7/sys/sparc64/sparc64/trap.c
==============================================================================
--- stable/7/sys/sparc64/sparc64/trap.c	Sun May  2 16:45:08 2010	(r207520)
+++ stable/7/sys/sparc64/sparc64/trap.c	Sun May  2 16:45:09 2010	(r207521)
@@ -249,7 +249,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;



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