summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/PacketIO.c
diff options
context:
space:
mode:
authorAlin Serdean <aserdean@cloudbasesolutions.com>2016-12-05 15:39:56 +0000
committerGurucharan Shetty <guru@ovn.org>2016-12-21 15:03:09 -0800
commit9cd754f7ffbe62905985435224f556d5e4b90a19 (patch)
tree671916d2b90fa14f2ee5a32f04732cca4001c08d /datapath-windows/ovsext/PacketIO.c
parent10471820e182c5bf683a21a16805f0587ad3ef66 (diff)
downloadopenvswitch-9cd754f7ffbe62905985435224f556d5e4b90a19.tar.gz
datapath-windows: Fix function prototypes
There is a mismatch between OvsInitCompletionList and OvsAddPktCompletionList prototypes. Eg: https://github.com/openvswitch/ovs/blob/master/datapath-windows/ovsext/PacketIO.h#L33 https://github.com/openvswitch/ovs/blob/master/datapath-windows/ovsext/PacketIO.c#L54 Found while compiling with Windows 10 kernel tool chain. Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com> Acked-by: Sairam Venugopal <vsairam@vmware.com> Signed-off-by: Gurucharan Shetty <guru@ovn.org>
Diffstat (limited to 'datapath-windows/ovsext/PacketIO.c')
-rw-r--r--datapath-windows/ovsext/PacketIO.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/datapath-windows/ovsext/PacketIO.c b/datapath-windows/ovsext/PacketIO.c
index e30a0c16c..40055892b 100644
--- a/datapath-windows/ovsext/PacketIO.c
+++ b/datapath-windows/ovsext/PacketIO.c
@@ -51,7 +51,7 @@ static NTSTATUS OvsCreateNewNBLsFromMultipleNBs(
PNET_BUFFER_LIST *curNbl,
PNET_BUFFER_LIST *nextNbl);
-__inline VOID
+VOID
OvsInitCompletionList(OvsCompletionList *completionList,
POVS_SWITCH_CONTEXT switchContext,
ULONG sendCompleteFlags)
@@ -64,7 +64,7 @@ OvsInitCompletionList(OvsCompletionList *completionList,
}
/* Utility function used to complete an NBL. */
-__inline VOID
+VOID
OvsAddPktCompletionList(OvsCompletionList *completionList,
BOOLEAN incoming,
NDIS_SWITCH_PORT_ID sourcePort,