]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Change to shared header file unrelated to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:50 +0000 (11:23 -0700)
committerOliver Kurth <okurth@vmware.com>
Fri, 15 Sep 2017 18:23:50 +0000 (11:23 -0700)
open-vm-tools/lib/include/hostinfo.h
open-vm-tools/lib/misc/hostinfoHV.c

index 67b09058c24188a353d35e6ff6a124de5606bde3..10682d262ff6d56d93d4d1c3da2be8c7c3e9d76d 100644 (file)
@@ -137,7 +137,6 @@ Bool Hostinfo_Daemonize(const char *path,
 
 Bool Hostinfo_NestingSupported(void);
 Bool Hostinfo_VCPUInfoBackdoor(unsigned bit);
-Bool Hostinfo_SLC64Supported(void);
 Bool Hostinfo_SynchronizedVTSCs(void);
 Bool Hostinfo_NestedHVReplaySupported(void);
 Bool Hostinfo_TouchBackDoor(void);
index d14f38ab3012f56919dec2c4ec9e06466d153200..df6e215c0cd8bfd6f330de3db02d2803d345418d 100644 (file)
@@ -280,37 +280,6 @@ Hostinfo_TouchXen(void)
 }
 
 
-/*
- *----------------------------------------------------------------------
- *
- *  Hostinfo_SLC64Supported --
- *
- *      Access the backdoor with an SLC64 control query. This is used
- *      to determine if we are running in a VM that supports SLC64.
- *      This function should only be called after determining that the
- *     backdoor is present with Hostinfo_TouchBackdoor().
- *
- * Results:
- *      TRUE if the outer VM supports SLC64.
- *      FALSE otherwise.
- *
- * Side effects:
- *      Exception if not in a VM, so don't do that!
- *
- *----------------------------------------------------------------------
- */
-
-Bool
-Hostinfo_SLC64Supported(void)
-{
-#if defined(__i386__) || defined(__x86_64__)
-   return Hostinfo_VCPUInfoBackdoor(BDOOR_CMD_VCPU_SLC64);
-#else
-   return FALSE;
-#endif
-}
-
-
 /*
  *----------------------------------------------------------------------
  *