Author: jhibbits
Date: Mon Oct  7 03:05:32 2019
New Revision: 353160
URL: https://svnweb.freebsd.org/changeset/base/353160

Log:
  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 <sh...@anastas.io>

Modified:
  head/stand/powerpc/ofw/cas.c

Modified: head/stand/powerpc/ofw/cas.c
==============================================================================
--- head/stand/powerpc/ofw/cas.c        Mon Oct  7 02:57:00 2019        
(r353159)
+++ head/stand/powerpc/ofw/cas.c        Mon Oct  7 03:05:32 2019        
(r353160)
@@ -203,7 +203,7 @@ ppc64_cas(void)
        }
 
        /* Skip CAS when running on PowerNV */
-       if (!ppc64_hv())
+       if (ppc64_hv())
                return (0);
 
        ihandle = OF_open("/");
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to