From: Jiayu Hu Date: Tue, 22 Aug 2017 13:58:49 +0000 (+0800) Subject: gro: fix typo in map file X-Git-Tag: spdx-start~2180 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=6e99ff9e46213e4f74aa2e6b2ef9c634dbe6df03;hp=85238f501ec36bc6f0e15e6434296312841259bd;p=dpdk.git 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 --- 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;