aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/ChannelMgmt.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/ChannelMgmt.h
parentStaging: hv: remove use of internal list routines in NetVsc (diff)
downloadlinux-dev-53af545b277508d6b4829e90546cbd1beef536a9.tar.xz
linux-dev-53af545b277508d6b4829e90546cbd1beef536a9.zip
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/ChannelMgmt.h')
-rw-r--r--drivers/staging/hv/ChannelMgmt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/hv/ChannelMgmt.h b/drivers/staging/hv/ChannelMgmt.h
index 0730182fe202..a839d8fe6cec 100644
--- a/drivers/staging/hv/ChannelMgmt.h
+++ b/drivers/staging/hv/ChannelMgmt.h
@@ -25,7 +25,7 @@
#ifndef _CHANNEL_MGMT_H_
#define _CHANNEL_MGMT_H_
-#include "List.h"
+#include <linux/list.h>
#include "RingBuffer.h"
#include "VmbusChannelInterface.h"
#include "VmbusPacketFormat.h"
@@ -225,7 +225,7 @@ enum vmbus_channel_state {
};
struct vmbus_channel {
- LIST_ENTRY ListEntry;
+ struct list_head ListEntry;
struct hv_device *DeviceObject;
@@ -281,10 +281,10 @@ struct vmbus_channel_debug_info {
*/
struct vmbus_channel_msginfo {
/* Bookkeeping stuff */
- LIST_ENTRY MsgListEntry;
+ struct list_head MsgListEntry;
/* So far, this is only used to handle gpadl body message */
- LIST_ENTRY SubMsgList;
+ struct list_head SubMsgList;
/* Synchronize the request/response if needed */
struct osd_waitevent *WaitEvent;