Add more files to the openvswitch library on MSVC
[cascardo/ovs.git] / lib / netdev-dpdk.h
index 5449a6b..e4ba6fc 100644 (file)
@@ -1,13 +1,17 @@
 #ifndef NETDEV_DPDK_H
 #define NETDEV_DPDK_H
 
-#ifdef DPDK_NETDEV
 #include <config.h>
 
+struct dpif_packet;
+
+#ifdef DPDK_NETDEV
+
 #include <rte_config.h>
 #include <rte_eal.h>
 #include <rte_debug.h>
 #include <rte_ethdev.h>
+#include <rte_eth_ring.h>
 #include <rte_errno.h>
 #include <rte_memzone.h>
 #include <rte_memcpy.h>
 #include <rte_launch.h>
 #include <rte_malloc.h>
 
-#include "ofpbuf.h"
-
 int dpdk_init(int argc, char **argv);
 void netdev_dpdk_register(void);
-void free_dpdk_buf(struct ofpbuf *);
+void free_dpdk_buf(struct dpif_packet *);
+int pmd_thread_setaffinity_cpu(int cpu);
+void thread_set_nonpmd(void);
 
 #else
 
-#define dpdk_init(arg1, arg2) (0)
-#define netdev_dpdk_register()
-#define free_dpdk_buf(arg)
+static inline int
+dpdk_init(int arg1 OVS_UNUSED, char **arg2 OVS_UNUSED)
+{
+    return 0;
+}
+
+static inline void
+netdev_dpdk_register(void)
+{
+    /* Nothing */
+}
+
+static inline void
+free_dpdk_buf(struct dpif_packet *buf OVS_UNUSED)
+{
+    /* Nothing */
+}
+
+static inline int
+pmd_thread_setaffinity_cpu(int cpu OVS_UNUSED)
+{
+    return 0;
+}
+
+static inline void
+thread_set_nonpmd(void)
+{
+    /* Nothing */
+}
 
 #endif /* DPDK_NETDEV */
 #endif