svn commit: r256777 - head/sys/powerpc/pseries

Nathan Whitehorn nwhitehorn at FreeBSD.org
Sun Oct 20 01:28:39 UTC 2013


Author: nwhitehorn
Date: Sun Oct 20 01:28:39 2013
New Revision: 256777
URL: http://svnweb.freebsd.org/changeset/base/256777

Log:
  Allow hypervisor calls with more than 7 arguments.

Modified:
  head/sys/powerpc/pseries/phyp-hvcall.S

Modified: head/sys/powerpc/pseries/phyp-hvcall.S
==============================================================================
--- head/sys/powerpc/pseries/phyp-hvcall.S	Sat Oct 19 21:55:42 2013	(r256776)
+++ head/sys/powerpc/pseries/phyp-hvcall.S	Sun Oct 20 01:28:39 2013	(r256777)
@@ -36,6 +36,8 @@
 ASENTRY(phyp_hcall)
 	mflr	%r0
 	std	%r0,16(%r1)
+	ld	%r11,112(%r1)		/* Last couple args into volatile regs*/
+	ld	%r12,120(%r1)
 	hc				/* invoke the hypervisor */
 	ld	%r0,16(%r1)
 	mtlr	%r0


More information about the svn-src-head mailing list