From 6e99ff9e46213e4f74aa2e6b2ef9c634dbe6df03 Mon Sep 17 00:00:00 2001 From: Jiayu Hu Date: Tue, 22 Aug 2017 21:58:49 +0800 Subject: [PATCH 1/1] gro: fix typo in map file 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") Cc: stable@dpdk.org Signed-off-by: Jiayu Hu Reviewed-by: Ferruh Yigit --- 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 bb40bb41b1..1606b6dc72 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.20.1