json.at: Run for Python 2 and 3.
[cascardo/ovs.git] / lib / netdev-dpdk.h
index b021aa5..646d3e2 100644 (file)
@@ -2,9 +2,8 @@
 #define NETDEV_DPDK_H
 
 #include <config.h>
-#include "ofpbuf.h"
 
-struct dpif_packet;
+struct dp_packet;
 
 #ifdef DPDK_NETDEV
 
@@ -21,16 +20,25 @@ struct dpif_packet;
 #include <rte_launch.h>
 #include <rte_malloc.h>
 
+#define NON_PMD_CORE_ID LCORE_ID_ANY
+
 int dpdk_init(int argc, char **argv);
 void netdev_dpdk_register(void);
-void free_dpdk_buf(struct dpif_packet *);
-int pmd_thread_setaffinity_cpu(int cpu);
+void free_dpdk_buf(struct dp_packet *);
+int pmd_thread_setaffinity_cpu(unsigned cpu);
 
 #else
 
+#define NON_PMD_CORE_ID UINT32_MAX
+
+#include "util.h"
+
 static inline int
-dpdk_init(int arg1 OVS_UNUSED, char **arg2 OVS_UNUSED)
+dpdk_init(int argc, char **argv)
 {
+    if (argc >= 2 && !strcmp(argv[1], "--dpdk")) {
+        ovs_fatal(0, "DPDK support not built into this copy of Open vSwitch.");
+    }
     return 0;
 }
 
@@ -41,13 +49,13 @@ netdev_dpdk_register(void)
 }
 
 static inline void
-free_dpdk_buf(struct dpif_packet *buf OVS_UNUSED)
+free_dpdk_buf(struct dp_packet *buf OVS_UNUSED)
 {
     /* Nothing */
 }
 
 static inline int
-pmd_thread_setaffinity_cpu(int cpu OVS_UNUSED)
+pmd_thread_setaffinity_cpu(unsigned cpu OVS_UNUSED)
 {
     return 0;
 }