Date: Sun, 20 Oct 2013 01:28:39 +0000 (UTC) From: Nathan Whitehorn <nwhitehorn@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r256777 - head/sys/powerpc/pseries Message-ID: <201310200128.r9K1SdKv036309@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310200128.r9K1SdKv036309>