Skip to content

Commit b244ea9

Browse files
committed
F-Stack support DPDK-23.11.3(LTS).
1 parent 7bfbc46 commit b244ea9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ Currently, besides authorized DNS server of DNSPod, there are various products i
5151
# Compile DPDK
5252
cd dpdk/
5353
# re-enable kni now, to remove kni later
54-
# disable crypto/openssl for Redhat/Centos 7.x.
55-
meson -Denable_kmods=true -Ddisable_libs=flow_classify -Ddisable_drivers=crypto/openssl build
54+
# disable crypto/openssl,net/ice for Redhat/Centos 7.x.
55+
meson -Denable_kmods=true -Ddisable_libs=flow_classify -Ddisable_drivers=crypto/openssl,net/ice build
5656
ninja -C build
5757
ninja -C build install
5858

lib/ff_dpdk_if.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ init_port_start(void)
809809
mode = rte_eth_bond_mode_get(port_id);
810810
printf("Port %u, bond mode:%d\n", port_id, mode);
811811

812-
count = rte_eth_bond_slaves_get(port_id, slaves, len);
812+
count = rte_eth_bond_members_get(port_id, slaves, len);
813813
printf("Port %u, %s's slave ports count:%d\n", port_id,
814814
ff_global_cfg.dpdk.bond_cfgs->name, count);
815815
for (x=0; x<count; x++) {

0 commit comments

Comments
 (0)