]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Fix unresolved symbols in Fusion VMCI kext
authorVMware, Inc <>
Tue, 29 Mar 2011 18:47:07 +0000 (11:47 -0700)
committerMarcelo Vanzin <mvanzin@vmware.com>
Tue, 29 Mar 2011 18:47:07 +0000 (11:47 -0700)
A few symbols where used but not defined in the Fusion VMCI kext.

Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/modules/linux/vmci/vmciDoorbell.c

index f2e2c95ba3ee5bbd5a58bd39550a44489c414921..5f6aacd835a74cc7b9fefa0c2f1432848ad40007 100644 (file)
@@ -1170,7 +1170,9 @@ VMCI_ScanNotificationBitmap(uint8 *bitmap)
 /*
  *-----------------------------------------------------------------------------
  *
- * VMCIDoorbell_Create/VMCIDoorbell_Destroy/VMCIDoorbell_Notify --
+ * VMCIDoorbell_Create/VMCIDoorbell_Destroy/VMCIDoorbell_Notify/
+ * VMCIDoorbellHostContextNotify/VMCIDoorbellGetPrivFlags/
+ * VMCIDoorbell_Init/VMCIDoorbell_Exit --
  *
  *      The doorbell functions have yet to be implemented for Solaris
  *      and Mac OS X guest drivers.
@@ -1212,4 +1214,32 @@ VMCIDoorbell_Notify(VMCIHandle handle,             // IN
    return VMCI_ERROR_UNAVAILABLE;
 }
 
+
+int
+VMCIDoorbellHostContextNotify(VMCIId srcCID,     // IN
+                              VMCIHandle handle) // IN
+{
+   return VMCI_ERROR_UNAVAILABLE;
+}
+
+
+int
+VMCIDoorbellGetPrivFlags(VMCIHandle handle,             // IN
+                         VMCIPrivilegeFlags *privFlags) // OUT
+{
+   return VMCI_ERROR_UNAVAILABLE;
+}
+
+
+void
+VMCIDoorbell_Init(void)
+{
+}
+
+
+void
+VMCIDoorbell_Exit(void)
+{
+}
+
 #endif // SOLARIS) || __APPLE__