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 567001B1BE for ; Wed, 24 Jan 2018 16:42:17 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0A0AA22701; Wed, 24 Jan 2018 10:42:17 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:42:17 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=T+pAMe6QCATw/iztR nK3xS60vEgSn4FEskFlfQpKhww=; b=HZpt9mBL+1hcOKMMAgTbCKCQFyQQHEDkU 9XEWvJdl4AR20/38I8bQhR8Q2sQDE7pupcRqUc7F2T0IZvrJpD7RcT5zyrTIRGwk ASaLnLfOcycpJhtXheSKht2zPLUNa5umDdmKiUeRHANdfi1ngdUny7oyj5NySbDQ DP8S4BKsXjSSg4ZVT4KbGtpGJQ2CkrVlXKmQRo2hnFFkoIFiKzuYyuuKy9EBaQ8S Zqy7N2FC8PdFavqIq4PmVKdT2tLUyEN2j/8Mjz1Um91RvF/dEZN0UITPzj6rckqU weBr+LrpVqP1xvindzWsL/Q3nvgVH28a9RPRWcjU/1qgTIk09jQTg== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=T+pAMe6QCATw/iztRnK3xS60vEgSn4FEskFlfQpKhww=; b=SfawB8jM 9rQ0rh2nXMksDIc/1YWnF0TCu5i3KRVR4zcwS2PvQTYjvW5vJN2Nu6VrEbwA27o/ etElpaCoMUxEzeHNEsKcuISC6s2rEclA1qCWGTKeA/tCFgkbjRfTlmaQ5g9XAJTI DvM0i/4rWsgIG6R6UNgK/YB9o+8Jj2sX1Sn/uFET4sf/l0fUi4aZS9h4kVjAsKxa 1wLOFA6uWvyDsQyhG9caI0n764QC+BXQRQhylgcehvpe8qujvjAoMwgZEfTJAm9Z faJp2M52FaCrUmsmOVaT+ekAnX1zCjucuKPseuK8dYP3l9QpnUqbeM1lwYYwQ9W7 X2TXVguExuiT9Q== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 4F04A7E3D6; Wed, 24 Jan 2018 10:42:14 -0500 (EST) From: Yuanhan Liu To: Pablo de Lara Cc: dpdk stable Date: Wed, 24 Jan 2018 23:33:31 +0800 Message-Id: <1516808026-25523-143-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> References: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'cryptodev: fix function prototype' has been queued to LTS release 17.11.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: Wed, 24 Jan 2018 15:42:17 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.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 01/26/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 278860927d0ff1638eb0b2a90ad329fe1477596f Mon Sep 17 00:00:00 2001 From: Pablo de Lara Date: Wed, 13 Dec 2017 15:55:00 +0000 Subject: [PATCH] cryptodev: fix function prototype [ upstream commit d368364dc3cc22bc0be871ff379ea95dedf94ac5 ] qp_detach_session function was using the attach_session_t function prototype, instead of detach_session_t. Since both of them have the same parameters, there were no compilation issues, but it is not consistent. Fixes: d816fdea557c ("cryptodev: add API to associate session with queue pair") Signed-off-by: Pablo de Lara --- lib/librte_cryptodev/rte_cryptodev_pmd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_cryptodev/rte_cryptodev_pmd.h b/lib/librte_cryptodev/rte_cryptodev_pmd.h index c3bf91c..089848e 100644 --- a/lib/librte_cryptodev/rte_cryptodev_pmd.h +++ b/lib/librte_cryptodev/rte_cryptodev_pmd.h @@ -390,7 +390,7 @@ struct rte_cryptodev_ops { /**< Clear a Crypto sessions private data. */ cryptodev_sym_queue_pair_attach_session_t qp_attach_session; /**< Attach session to queue pair. */ - cryptodev_sym_queue_pair_attach_session_t qp_detach_session; + cryptodev_sym_queue_pair_detach_session_t qp_detach_session; /**< Detach session from queue pair. */ }; -- 2.7.4