From: VMware, Inc <> Date: Tue, 29 Mar 2011 18:47:07 +0000 (-0700) Subject: Fix unresolved symbols in Fusion VMCI kext X-Git-Tag: 2011.03.28-387002~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5acdf3a4083dcf59d6b60d859d1b070912bbaf98;p=thirdparty%2Fopen-vm-tools.git Fix unresolved symbols in Fusion VMCI kext A few symbols where used but not defined in the Fusion VMCI kext. Signed-off-by: Marcelo Vanzin --- diff --git a/open-vm-tools/modules/linux/vmci/vmciDoorbell.c b/open-vm-tools/modules/linux/vmci/vmciDoorbell.c index f2e2c95ba..5f6aacd83 100644 --- a/open-vm-tools/modules/linux/vmci/vmciDoorbell.c +++ b/open-vm-tools/modules/linux/vmci/vmciDoorbell.c @@ -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__