-
Notifications
You must be signed in to change notification settings - Fork 953
Closed
Description
the commit 6beb89e dont build on fedora.
ff_dpdk_if.c: In function ‘init_port_start’:
ff_dpdk_if.c:581:17: error: implicit declaration of function ‘rte_eth_bond_8023ad_dedicated_queues_enable’ [-Werror=implicit-function-declaration]
581 | rte_eth_bond_8023ad_dedicated_queues_enable(u_port_id);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors
make: *** [Makefile:666: ff_dpdk_if.o] Error 1
The reason is a missing include file in ff_dpdk_if.c
Maybe something like this:
#ifdef RTE_NET_BOND
#include <rte_eth_bond.h>
#include <rte_eth_bond_8023ad.h>
#endif
Metadata
Metadata
Assignees
Labels
No labels