From cbabbd58652432e5bc3716844d51812ecc577c96 Mon Sep 17 00:00:00 2001 From: Vitaliy Ivanov Date: Mon, 13 Jan 2020 16:10:09 +0200 Subject: example: fix compilation of ndpireader on latest dpdk. reader_util.c:1708:43: error: 'ETHER_MAX_LEN' undeclared here (not in a function) .rxmode = { .max_rx_pkt_len = ETHER_MAX_LEN } ^~~~~~~~~~~~~ DPDK before 19.08 had a macro ETHER_MAX_LEN, in later versions it was changed to RTE_ETHER_MAX_LEN. Signed-off-by: Vitaliy Ivanov --- example/reader_util.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/example/reader_util.c b/example/reader_util.c index f8dd315d0..1376f9b8d 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1792,8 +1792,15 @@ u_int32_t ethernet_crc32(const void* data, size_t n_bytes) { #ifdef USE_DPDK +#include +#include + static const struct rte_eth_conf port_conf_default = { +#if (RTE_VERSION < RTE_VERSION_NUM(19, 8, 0, 0)) .rxmode = { .max_rx_pkt_len = ETHER_MAX_LEN } +#else + .rxmode = { .max_rx_pkt_len = RTE_ETHER_MAX_LEN } +#endif }; /* ************************************ */ -- cgit v1.2.3