From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 140A21B104 for ; Wed, 21 Nov 2018 17:07:02 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 740D63001709; Wed, 21 Nov 2018 16:07:01 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 2DA1760A9C; Wed, 21 Nov 2018 16:06:59 +0000 (UTC) From: Kevin Traynor To: Fiona Trahe Cc: Tomasz Jozwiak , dpdk stable Date: Wed, 21 Nov 2018 16:04:39 +0000 Message-Id: <20181121160440.9014-49-ktraynor@redhat.com> In-Reply-To: <20181121160440.9014-1-ktraynor@redhat.com> References: <20181121160440.9014-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Wed, 21 Nov 2018 16:07:01 +0000 (UTC) Subject: [dpdk-stable] patch 'compress/qat: remove unnecessary assignment' has been queued to stable release 18.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: Wed, 21 Nov 2018 16:07:02 -0000 Hi, FYI, your patch has been queued to stable release 18.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/26/18. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From ff661b119ebdc0aa48826ffa267ccc475d514022 Mon Sep 17 00:00:00 2001 From: Fiona Trahe Date: Sat, 22 Sep 2018 14:25:38 +0100 Subject: [PATCH] compress/qat: remove unnecessary assignment [ upstream commit 78c5ea91329ee9e16825c92ba94c2bcfd764e080 ] Same variable was assigned twice, remove one. Fixes: 6a7ea14819e9 ("compress/qat: add xform processing") Signed-off-by: Fiona Trahe Acked-by: Tomasz Jozwiak --- drivers/compress/qat/qat_comp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/compress/qat/qat_comp.c b/drivers/compress/qat/qat_comp.c index 6f1f2dc25..b9336f356 100644 --- a/drivers/compress/qat/qat_comp.c +++ b/drivers/compress/qat/qat_comp.c @@ -146,5 +146,4 @@ qat_comp_process_response(void **op, uint8_t *resp) *((uint16_t *)(&resp_msg->comn_resp.comn_error)); } else { - struct qat_comp_xform *qat_xform = rx_op->private_xform; struct icp_qat_fw_resp_comp_pars *comp_resp = (struct icp_qat_fw_resp_comp_pars *)&resp_msg->comp_resp_pars; -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-21 15:59:14.851679082 +0000 +++ 0049-compress-qat-remove-unnecessary-assignment.patch 2018-11-21 15:59:13.000000000 +0000 @@ -1,12 +1,13 @@ -From 78c5ea91329ee9e16825c92ba94c2bcfd764e080 Mon Sep 17 00:00:00 2001 +From ff661b119ebdc0aa48826ffa267ccc475d514022 Mon Sep 17 00:00:00 2001 From: Fiona Trahe Date: Sat, 22 Sep 2018 14:25:38 +0100 Subject: [PATCH] compress/qat: remove unnecessary assignment +[ upstream commit 78c5ea91329ee9e16825c92ba94c2bcfd764e080 ] + Same variable was assigned twice, remove one. Fixes: 6a7ea14819e9 ("compress/qat: add xform processing") -Cc: stable@dpdk.org Signed-off-by: Fiona Trahe Acked-by: Tomasz Jozwiak