From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 31FB7235 for ; Tue, 21 Nov 2017 14:19:27 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id AA77C20AAF; Tue, 21 Nov 2017 08:19:26 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Tue, 21 Nov 2017 08:19:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=Ar9tbdMfky2CeXoMD3puLFzUT/iHR4In4GD+9IsZi Mw=; b=gbatVHummnDHPWBW9XIaNUog5BA9ga5GtUc2KrPHjXV2hEDY2kHB5Gx+R igvckjKk8jxg2SQYswSCj+kID0dIIkxZNdO2Dy3qNK2Rdww7+DKxGbgyy8v70c/j 8W1p2EjEdSABFcGDzYXTCWXDVHfaAka4yY+DmIKq1h8J6u57xfxAVzA8TCa31zZc V98XZw1lXPsNYTZTzSS6iASDGSaJInnVOo4QVGiKLFxh2iFA4WgKz+34cuPVM2mw dUylYyKwg96atYkn07jXHYymbm369+FTTObel5kAH/MNFqvaYa6SjZSsxy8jxZav f5Xym9fGvlA6Okeju0vmIkBXukHYg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=Ar9tbdMfky2CeXoMD 3puLFzUT/iHR4In4GD+9IsZiMw=; b=R1gGDA7mOT8dm+0lIK4tZi1Egxs8hluu8 d/vsUKRhGYb5tA219ezAJkx621aJXzszTkj6XAHoCx2WSc/TacIAXfqrv8hnzDdu sPyLOQ9ONYNdhpfrC7ihBxemIQ7sjCr0ohKSl77Uh9aex7Sq1g91x5m+qmTDwTEI AS+v5iYc5ID8yGvsQPw3vV5mwqFuDNJ1w4CDjOQr4p9WjaaAWMx7PucPA3qz/d6y N7NZKtvDD7ZgP7qvotolZDzQG5qjwgdRsB7n92orO1+EDm+9h6VMMdXDcy81NYN0 tuMMn8gBrxsF/3W8vnz/RYuadVnn1gXQdAmat7JK9XjZn0DDabijA== X-ME-Sender: Received: from localhost.localdomain (unknown [180.158.62.0]) by mail.messagingengine.com (Postfix) with ESMTPA id 3F0F7247A9; Tue, 21 Nov 2017 08:19:23 -0500 (EST) From: Yuanhan Liu To: Jiayu Hu Cc: Ferruh Yigit , dpdk stable Date: Tue, 21 Nov 2017 21:15:43 +0800 Message-Id: <1511270333-31002-1-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-stable] patch 'gro: fix typo in map file' has been queued to stable release 17.08.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Nov 2017 13:19:27 -0000 Hi, FYI, your patch has been queued to stable release 17.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/24/17. So please shout if anyone has objections. Thanks. --yliu --- >>From 62dbb2d7d1c87641c06021b4c1f4490d990ead26 Mon Sep 17 00:00:00 2001 From: Jiayu Hu Date: Tue, 22 Aug 2017 21:58:49 +0800 Subject: [PATCH] gro: fix typo in map file [ upstream commit 6e99ff9e46213e4f74aa2e6b2ef9c634dbe6df03 ] 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 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 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