The names of rte_gro_ctx_create() and rte_gro_ctx_destroy() in rte_gro_version.map are incorrect. This patch is to fix this issue.
Fixes: e996506a1c07 ("lib/gro: add Generic Receive Offload API framework") Signed-off-by: Jiayu Hu <jiayu...@intel.com> --- lib/librte_gro/rte_gro_version.map | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_gro/rte_gro_version.map b/lib/librte_gro/rte_gro_version.map index bb40bb4..1606b6d 100644 --- a/lib/librte_gro/rte_gro_version.map +++ b/lib/librte_gro/rte_gro_version.map @@ -1,8 +1,8 @@ DPDK_17.08 { global: - rte_gro_ctrl_create; - rte_gro_ctrl_destroy; + rte_gro_ctx_create; + rte_gro_ctx_destroy; rte_gro_get_pkt_count; rte_gro_reassemble; rte_gro_reassemble_burst; -- 2.7.4