summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/precomp.h
diff options
context:
space:
mode:
authorNithin Raju <nithin@vmware.com>2014-08-19 13:51:52 -0700
committerBen Pfaff <blp@nicira.com>2014-08-19 14:23:17 -0700
commit4f3988e0f6e3efcb418a3ba9de433970a64bfca4 (patch)
tree72a0e59cc168e9f910a92f50ff3fc35fa3bbceb8 /datapath-windows/ovsext/precomp.h
parent107331906b32c606eddd3e0fc42b42d0a3bc7372 (diff)
downloadopenvswitch-4f3988e0f6e3efcb418a3ba9de433970a64bfca4.tar.gz
datapath-windows: Add Datapath.[ch] and OVS_USE_NL_INTERFACE CPP
In this change we create peer to OvsIoctl.[ch] that would interface with userspace using the netlink interface. The new files are called Datapath.[ch]. We are not deleting OvsIoctl.[ch] yet. Datapath.[ch] provides bare minimum functionality to register a pseudo device for communication with userspace. We also define a CPP called OVS_USE_NL_INTERFACE in the ovsext project. This defines if the old interface (pre-netlink based) or the new interface (netlink- based) should be enabled in the kernel. By default, the value is 0 since the Datapath.[ch] are minimal. In the next change, we'll turn it to 1. Since Datapath.[ch] containes code copied from OvsIoctl.[ch], acking the original author as well. Signed-off-by: Nithin Raju <nithin@vmware.com> Co-authored-by: Guolin Yang <gyang@vmware.com> Acked-by: Alin Serdean <aserdean@cloudbasesolutions.com> Acked-by: Ankur Sharma <ankursharma@vmware.com> Acked-by: Saurabh Shah <ssaurabh@vmware.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'datapath-windows/ovsext/precomp.h')
-rw-r--r--datapath-windows/ovsext/precomp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/datapath-windows/ovsext/precomp.h b/datapath-windows/ovsext/precomp.h
index ec4a6217f..5f23d02b3 100644
--- a/datapath-windows/ovsext/precomp.h
+++ b/datapath-windows/ovsext/precomp.h
@@ -29,3 +29,6 @@
* include/linux is pending discussion.
*/
#include "..\include\OvsDpInterface.h"
+#if defined OVS_USE_NL_INTERFACE && OVS_USE_NL_INTERFACE == 1
+#include "..\include\OvsDpInterfaceExt.h"
+#endif