From 53af545b277508d6b4829e90546cbd1beef536a9 Mon Sep 17 00:00:00 2001 From: Bill Pemberton Date: Fri, 11 Sep 2009 21:46:44 -0400 Subject: 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 Cc: Hank Janssen Cc: Haiyang Zhang Signed-off-by: Greg Kroah-Hartman --- drivers/staging/hv/VmbusPrivate.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'drivers/staging/hv/VmbusPrivate.h') 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 /* @@ -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; -- cgit v1.2.3