Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Cc: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
/* Globals */
-VMBUS_CONNECTION gVmbusConnection = {
+struct VMBUS_CONNECTION gVmbusConnection = {
.ConnectState = Disconnected,
.NextGpadlHandle = 0xE1E10,
};
#define MAX_SIZE_CHANNEL_MESSAGE HV_MESSAGE_PAYLOAD_BYTE_COUNT
-typedef struct _VMBUS_CONNECTION {
+struct VMBUS_CONNECTION {
enum VMBUS_CONNECT_STATE ConnectState;
spinlock_t channel_lock;
HANDLE WorkQueue;
-} VMBUS_CONNECTION;
+};
typedef struct _VMBUS_MSGINFO {
/* Externs */
-extern VMBUS_CONNECTION gVmbusConnection;
+extern struct VMBUS_CONNECTION gVmbusConnection;
/* General vmbus interface */