summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/Datapath.h
diff options
context:
space:
mode:
authorNithin Raju <nithin@vmware.com>2014-12-03 07:56:00 -0800
committerBen Pfaff <blp@nicira.com>2014-12-05 10:30:20 -0800
commitfa8266a805b46891854d1fd48827514c7a1f0b55 (patch)
treeb4ffc673a7f648e08fd2358df86b013b77324a80 /datapath-windows/ovsext/Datapath.h
parent3100516ad790b20e449b67a848e071dc5bd3f8d3 (diff)
downloadopenvswitch-fa8266a805b46891854d1fd48827514c7a1f0b55.tar.gz
datapath-windows: Move Build*Msg() to Netlink.c
Moving the functions that build netlink messages to Netlink.c from Vport.c Signed-off-by: Nithin Raju <nithin@vmware.com> Acked-by: Eitan Eliahu <eliahue@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'datapath-windows/ovsext/Datapath.h')
-rw-r--r--datapath-windows/ovsext/Datapath.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/datapath-windows/ovsext/Datapath.h b/datapath-windows/ovsext/Datapath.h
index e4366994c..2e3bac58f 100644
--- a/datapath-windows/ovsext/Datapath.h
+++ b/datapath-windows/ovsext/Datapath.h
@@ -25,14 +25,6 @@
#define __DATAPATH_H_ 1
/*
- * Structure of an error message sent as a reply from kernel.
- */
-typedef struct _OVS_MESSAGE_ERROR {
- NL_MSG_HDR nlMsg;
- NL_MSG_ERR errorMsg;
-} OVS_MESSAGE_ERROR, *POVS_MESSAGE_ERROR;
-
-/*
* Device operations to tag netlink commands with. This is a bitmask since it
* is possible that a particular command can be invoked via different device
* operations.
@@ -98,12 +90,6 @@ NTSTATUS OvsCompleteIrpRequest(PIRP irp, ULONG_PTR infoPtr, NTSTATUS status);
VOID OvsAcquireCtrlLock();
VOID OvsReleaseCtrlLock();
-/* XXX: Move this to netlink.[ch] eventually. */
-VOID BuildReplyMsgFromMsgIn(POVS_MESSAGE msgIn, POVS_MESSAGE msgOut,
- UINT16 flags);
-VOID BuildErrorMsg(POVS_MESSAGE msgIn, POVS_MESSAGE_ERROR msgOut,
- UINT errorCode);
-
/*
* Utility structure and functions to collect in one place all the parameters
* passed during a call from userspace.