2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-30 22:05:19 +00:00

dpdk: Fix DPDK pdump compilation

The rte_pdump header file was not included in the file that requires it.
Fix this.

Fixes: 01961bbdd3 ("dpdk: New module with some code from netdev-dpdk.")
Signed-off-by: Ciara Loftus <ciara.loftus@intel.com>
Signed-off-by: Daniele Di Proietto <diproiettod@vmware.com>
This commit is contained in:
Ciara Loftus
2016-10-13 18:27:51 +01:00
committed by Daniele Di Proietto
parent 01961bbdd3
commit a0cbc627a6
2 changed files with 5 additions and 3 deletions

View File

@@ -22,8 +22,13 @@
#include <getopt.h>
#include <rte_memzone.h>
#ifdef DPDK_PDUMP
#include <rte_mempool.h>
#include <rte_pdump.h>
#endif
#include "dirs.h"
#include "fatal-signal.h"
#include "netdev-dpdk.h"
#include "openvswitch/dynamic-string.h"
#include "openvswitch/vlog.h"