aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/hv/VmbusPrivate.h
diff options
context:
space:
mode:
authorBill Pemberton <wfp5p@virginia.edu>2009-09-11 21:46:44 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2009-09-15 12:02:04 -0700
commit53af545b277508d6b4829e90546cbd1beef536a9 (patch)
tree8aebf104347e90679873a18799900e8dddb1f5d7 /drivers/staging/hv/VmbusPrivate.h
parentd29274efb73735c6a94f20214b1e4ea994da8848 (diff)
Staging: hv: remove more usages of internal list routines
The hv driver has it's own linked list routines. This removes them from more places in hv. Signed-off-by: Bill Pemberton <wfp5p@virginia.edu> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: Haiyang Zhang <haiyangz@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/VmbusPrivate.h')
-rw-r--r--drivers/staging/hv/VmbusPrivate.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/hv/VmbusPrivate.h b/drivers/staging/hv/VmbusPrivate.h
index 4aabb974348..05ad2c9380d 100644
--- a/drivers/staging/hv/VmbusPrivate.h
+++ b/drivers/staging/hv/VmbusPrivate.h
@@ -31,7 +31,7 @@
#include "ChannelMgmt.h"
#include "ChannelInterface.h"
#include "RingBuffer.h"
-#include "List.h"
+#include <linux/list.h>
/*
@@ -76,11 +76,11 @@ struct VMBUS_CONNECTION {
* is child->parent notification
*/
void *MonitorPages;
- LIST_ENTRY ChannelMsgList;
+ struct list_head ChannelMsgList;
spinlock_t channelmsg_lock;
/* List of channels */
- LIST_ENTRY ChannelList;
+ struct list_head ChannelList;
spinlock_t channel_lock;
struct workqueue_struct *WorkQueue;
@@ -89,7 +89,7 @@ struct VMBUS_CONNECTION {
struct VMBUS_MSGINFO {
/* Bookkeeping stuff */
- LIST_ENTRY MsgListEntry;
+ struct list_head MsgListEntry;
/* Synchronize the request/response if needed */
struct osd_waitevent *WaitEvent;