2014-03-24 19:23:08 -07:00
|
|
|
#ifndef NETDEV_DPDK_H
|
|
|
|
#define NETDEV_DPDK_H
|
|
|
|
|
|
|
|
#include <config.h>
|
2014-03-24 21:10:39 -07:00
|
|
|
#include "ofpbuf.h"
|
|
|
|
|
|
|
|
#ifdef DPDK_NETDEV
|
2014-03-24 19:23:08 -07:00
|
|
|
|
|
|
|
#include <rte_config.h>
|
|
|
|
#include <rte_eal.h>
|
|
|
|
#include <rte_debug.h>
|
|
|
|
#include <rte_ethdev.h>
|
|
|
|
#include <rte_errno.h>
|
|
|
|
#include <rte_memzone.h>
|
|
|
|
#include <rte_memcpy.h>
|
|
|
|
#include <rte_cycles.h>
|
|
|
|
#include <rte_spinlock.h>
|
|
|
|
#include <rte_launch.h>
|
|
|
|
#include <rte_malloc.h>
|
|
|
|
|
|
|
|
int dpdk_init(int argc, char **argv);
|
|
|
|
void netdev_dpdk_register(void);
|
|
|
|
void free_dpdk_buf(struct ofpbuf *);
|
2014-03-20 22:07:44 -07:00
|
|
|
int pmd_thread_setaffinity_cpu(int cpu);
|
2014-03-24 19:23:08 -07:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2014-03-24 21:10:39 -07:00
|
|
|
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 ofpbuf *buf OVS_UNUSED)
|
|
|
|
{
|
|
|
|
/* Nothing */
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
pmd_thread_setaffinity_cpu(int cpu OVS_UNUSED)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2014-03-24 19:23:08 -07:00
|
|
|
|
|
|
|
#endif /* DPDK_NETDEV */
|
|
|
|
#endif
|