loader/powerpc64: Fix HV check for CAS usage

Logic was backwards.  The function returns true if it *is* running as a
hypervisor, whereas we want to only call the CAS utility if we're running as a
guest.

Reported by:	Shawn Anastasio <shawn@anastas.io>
This commit is contained in:
Justin Hibbits 2019-10-07 03:05:32 +00:00
parent 02e7952133
commit cd51f7df9c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=353160

View File

@ -203,7 +203,7 @@ ppc64_cas(void)
}
/* Skip CAS when running on PowerNV */
if (!ppc64_hv())
if (ppc64_hv())
return (0);
ihandle = OF_open("/");