Skip to content

Instantly share code, notes, and snippets.

@zarzen
Created December 17, 2019 04:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zarzen/850edfb788ce91ddb5444495967121a9 to your computer and use it in GitHub Desktop.
Save zarzen/850edfb788ce91ddb5444495967121a9 to your computer and use it in GitHub Desktop.
eRPC compiling log
Scanning dependencies of target erpc
[ 1%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o
[ 3%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o
[ 2%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o
[ 5%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o
[ 6%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o
[ 10%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o
[ 11%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/transport.cc.o
[ 12%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o
[ 21%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o
[ 23%] Building CXX object CMakeFiles/erpc.dir/src/util/tls_registry.cc.o
[ 14%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o
[ 24%] Building CXX object CMakeFiles/erpc.dir/src/util/externs.cc.o
[ 15%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/raw/raw_transport.cc.o
[ 16%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o
[ 17%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o
[ 19%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o
[ 20%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o
[ 25%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o
[ 26%] Building CXX object CMakeFiles/erpc.dir/src/util/huge_alloc.cc.o
[ 28%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o
[ 8%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o
[ 8%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o
[ 35%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/infiniband/ib_transport.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/raw/raw_transport_datapath.cc.o
[ 37%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/infiniband/ib_transport_datapath.cc.o
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc: In member function ‘void erpc::DpdkTransport::setup_phy_port()’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:147:65: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:157:58: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_SET, &fi);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:566: recipe for target 'CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:542: recipe for target 'CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:86: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:374: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:350: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:110: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:158: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:446: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:62: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:254: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:230: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:206: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:470: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:326: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:302: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:182: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:278: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:422: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:494: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:398: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:134: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o] Error 1
CMakeFiles/Makefile2:363: recipe for target 'CMakeFiles/erpc.dir/all' failed
make[1]: *** [CMakeFiles/erpc.dir/all] Error 2
Makefile:94: recipe for target 'all' failed
make: *** [all] Error 2
ubuntu@ip-172-31-29-187:~/eRPC$ gcc --version
gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
ubuntu@ip-172-31-29-187:~/eRPC$ gcc-8
gcc-8: fatal error: no input files
compilation terminated.
ubuntu@ip-172-31-29-187:~/eRPC$ gcc-8 --version
gcc-8 (Ubuntu 8.3.0-6ubuntu1~18.04.1) 8.3.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
ubuntu@ip-172-31-29-187:~/eRPC$ ls
CMakeCache.txt CMakeLists.txt Doxyfile Makefile README.md build drivers mica src third_party
CMakeFiles CTestTestfile.cmake DoxygenLayout.xml NOTES.md apps cmake_install.cmake hello_world scripts tests
ubuntu@ip-172-31-29-187:~/eRPC$ cd build/
ubuntu@ip-172-31-29-187:~/eRPC/build$ ls
ubuntu@ip-172-31-29-187:~/eRPC/build$ cd ..
ubuntu@ip-172-31-29-187:~/eRPC$ cd ..
ubuntu@ip-172-31-29-187:~$ rm -rf
ubuntu@ip-172-31-29-187:~$ rm -rf eRPC/
ubuntu@ip-172-31-29-187:~$ git clone https://github.com/erpc-io/eRPC.git
Cloning into 'eRPC'...
remote: Enumerating objects: 233, done.
remote: Counting objects: 100% (233/233), done.
remote: Compressing objects: 100% (179/179), done.
remote: Total 16745 (delta 139), reused 116 (delta 54), pack-reused 16512
Receiving objects: 100% (16745/16745), 3.48 MiB | 22.58 MiB/s, done.
Resolving deltas: 100% (12326/12326), done.
ubuntu@ip-172-31-29-187:~$ cd eRPC/
ubuntu@ip-172-31-29-187:~/eRPC$ ls
CMakeLists.txt Doxyfile DoxygenLayout.xml NOTES.md README.md apps drivers hello_world mica scripts src tests third_party
ubuntu@ip-172-31-29-187:~/eRPC$ cmake . -DPERF=OFF -DTRANSPORT=dpdk
-- The C compiler identification is GNU 7.4.0
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found GTest: /usr/lib/libgtest.a
-- Compilation not optimized for performance.
-- Profile-guided optimization is disabled.
-- Logging level = warn.
-- Debugging is enabled. Perf will be low.
-- Testing is enabled. Performance will be low.
-- LTO is disabled. Performance will be low.
-- Boost version: 1.65.1
-- Boost include directory = /usr/include
-- Selected transport = dpdk.
-- Compiling eRPC as a library
-- No autorun_app_file found. No application will be compiled.
-- Configuring done
-- Generating done
-- Build files have been written to: /home/ubuntu/eRPC
ubuntu@ip-172-31-29-187:~/eRPC$ make -j
Scanning dependencies of target erpc
[ 1%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o
[ 2%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/transport.cc.o
[ 3%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o
[ 6%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o
[ 5%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o
[ 7%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o
[ 16%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o
[ 17%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o
[ 19%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o
[ 20%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/raw/raw_transport_datapath.cc.o
[ 8%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o
[ 10%] Building CXX object CMakeFiles/erpc.dir/src/util/externs.cc.o
[ 21%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o
[ 11%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/infiniband/ib_transport_datapath.cc.o
[ 12%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o
[ 14%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o
[ 15%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/infiniband/ib_transport.cc.o
[ 23%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o
[ 24%] Building CXX object CMakeFiles/erpc.dir/src/transport_impl/raw/raw_transport.cc.o
[ 37%] Building CXX object CMakeFiles/erpc.dir/src/util/huge_alloc.cc.o
[ 25%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o
[ 26%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o
[ 28%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o
[ 29%] Building CXX object CMakeFiles/erpc.dir/src/util/tls_registry.cc.o
[ 30%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o
[ 32%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o
[ 33%] Building CXX object CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o
[ 34%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o
[ 35%] Building CXX object CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_helpers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc.cc:9:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_resp.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_req.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_reset_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_fault_inject.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_sm_api.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:0:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport_datapath.cc:3:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc: In member function ‘void erpc::DpdkTransport::setup_phy_port()’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:147:65: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:157:58: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_SET, &fi);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.cc:8:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_pkt_loss.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_disconnect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rx.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_connect_handlers.cc:5:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_rfr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_cr.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_sm_thread.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_kick.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_queues.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/rpc.h:4,
from /home/ubuntu/eRPC/src/rpc_impl/rpc_ev_loop.cc:1:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h: In static member function ‘static void erpc::DpdkTransport::install_flow_rule(size_t, size_t, uint32_t, uint16_t)’:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:125:69: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
if (rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_NTUPLE) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:139:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &ntuple);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:150:67: error: ‘int rte_eth_dev_filter_supported(uint16_t, rte_filter_type)’ is deprecated [-Werror=deprecated-declarations]
rte_eth_dev_filter_supported(phy_port, RTE_ETH_FILTER_FDIR) == 0) {
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3553:5: note: declared here
int rte_eth_dev_filter_supported(uint16_t port_id,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19:0,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:163:68: error: ‘int rte_eth_dev_filter_ctrl(uint16_t, rte_filter_type, rte_filter_op, void*)’ is deprecated [-Werror=deprecated-declarations]
RTE_ETH_FILTER_ADD, &filter);
^
In file included from /home/ubuntu/eRPC/src/transport_impl/dpdk/dpdk_transport.h:17:0,
from /home/ubuntu/eRPC/src/cc/timing_wheel.h:19,
from /home/ubuntu/eRPC/src/session.h:8,
from /home/ubuntu/eRPC/src/nexus.h:7,
from /home/ubuntu/eRPC/src/nexus_impl/nexus_bg_thread.cc:2:
/usr/local/include/rte_ethdev.h:3576:5: note: declared here
int rte_eth_dev_filter_ctrl(uint16_t port_id, enum rte_filter_type filter_type,
^~~~~~~~~~~~~~~~~~~~~~~
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:566: recipe for target 'CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport_datapath.cc.o] Error 1
make[2]: *** Waiting for unfinished jobs....
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:542: recipe for target 'CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/transport_impl/dpdk/dpdk_transport.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:110: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus_sm_thread.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:86: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus_bg_thread.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:326: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_fault_inject.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:446: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_reset_handlers.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:278: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_resp.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:254: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_req.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:62: recipe for target 'CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/nexus_impl/nexus.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:422: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_disconnect_handlers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:494: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_helpers.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:230: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_kick.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:206: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_cr.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:350: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_pkt_loss.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:134: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:470: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_sm_api.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:182: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_rfr.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:158: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_queues.cc.o] Error 1
CMakeFiles/erpc.dir/build.make:374: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_rx.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:302: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_ev_loop.cc.o] Error 1
At global scope:
cc1plus: error: unrecognized command line option ‘-Wno-keyword-macro’ [-Werror]
cc1plus: error: unrecognized command line option ‘-Wno-nested-anon-types’ [-Werror]
cc1plus: all warnings being treated as errors
CMakeFiles/erpc.dir/build.make:398: recipe for target 'CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o' failed
make[2]: *** [CMakeFiles/erpc.dir/src/rpc_impl/rpc_connect_handlers.cc.o] Error 1
CMakeFiles/Makefile2:363: recipe for target 'CMakeFiles/erpc.dir/all' failed
make[1]: *** [CMakeFiles/erpc.dir/all] Error 2
Makefile:94: recipe for target 'all' failed
make: *** [all] Error 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment