From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2B4FEA00C2 for ; Wed, 23 Nov 2022 19:05:34 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E36B342DC1; Wed, 23 Nov 2022 19:05:33 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 4F72440E5A for ; Wed, 23 Nov 2022 19:05:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1669226731; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LwJLalJiQH/Jja1hgRoKJlFZRx75mTM7BXm73zscA7w=; b=VHMblkZiMRUTWInhgwls0dbVftjU9FiLvT/kL3j8HdcHw+ZOQKAAx0TVwKdUlIMKHjIxP7 dMuZM0Xp5EPzsGgyLW2LDutWzskZlgdcSkXBcUsLLR+TTPHX6SzZEDtpaUTT44cxvc8hFs 9oUv4wfRSza5jypZhU/vMvkemYedcN0= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-64-5Un74V68OZKDZQ4gJRMBOg-1; Wed, 23 Nov 2022 13:05:28 -0500 X-MC-Unique: 5Un74V68OZKDZQ4gJRMBOg-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 2314E1C0A580; Wed, 23 Nov 2022 18:05:28 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id 745A1492B07; Wed, 23 Nov 2022 18:05:27 +0000 (UTC) From: Kevin Traynor To: Thomas Monjalon Cc: Bruce Richardson , dpdk stable Subject: patch 'drivers: remove unused build variable' has been queued to stable release 21.11.3 Date: Wed, 23 Nov 2022 18:04:11 +0000 Message-Id: <20221123180413.733554-58-ktraynor@redhat.com> In-Reply-To: <20221123180413.733554-1-ktraynor@redhat.com> References: <20221123180413.733554-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII"; x-default=true X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Hi, FYI, your patch has been queued to stable release 21.11.3 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/28/22. 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. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/776c777a619c988dc710cfaeff82e7c7d022b000 Thanks. Kevin --- >From 776c777a619c988dc710cfaeff82e7c7d022b000 Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Mon, 31 Oct 2022 11:44:44 +0100 Subject: [PATCH] drivers: remove unused build variable [ upstream commit abb98ed0b3869c89c5b307a99173ad9b6e587e2c ] The variable fmt_name has been removed from DPDK 21.02-rc1. Then some drivers were integrated in the same year with this variable. Of course it has no effect, so it is cleaned up. Fixes: 832a4cf1d11d ("compress/mlx5: introduce PMD") Fixes: a7c86884f150 ("crypto/mlx5: introduce Mellanox crypto driver") Fixes: 5e7596ba7cb3 ("vdpa/sfc: introduce Xilinx vDPA driver") Signed-off-by: Thomas Monjalon Acked-by: Bruce Richardson --- drivers/compress/mlx5/meson.build | 1 - drivers/crypto/mlx5/meson.build | 1 - drivers/vdpa/sfc/meson.build | 1 - 3 files changed, 3 deletions(-) diff --git a/drivers/compress/mlx5/meson.build b/drivers/compress/mlx5/meson.build index 7aac329986..fb04835f36 100644 --- a/drivers/compress/mlx5/meson.build +++ b/drivers/compress/mlx5/meson.build @@ -8,5 +8,4 @@ if not is_linux endif -fmt_name = 'mlx5_compress' deps += ['common_mlx5', 'eal', 'compressdev'] sources = files( diff --git a/drivers/crypto/mlx5/meson.build b/drivers/crypto/mlx5/meson.build index 9d9c9c00bc..b09fc1a9d5 100644 --- a/drivers/crypto/mlx5/meson.build +++ b/drivers/crypto/mlx5/meson.build @@ -8,5 +8,4 @@ if not (is_linux or is_windows) endif -fmt_name = 'mlx5_crypto' deps += ['common_mlx5', 'eal', 'cryptodev'] sources = files( diff --git a/drivers/vdpa/sfc/meson.build b/drivers/vdpa/sfc/meson.build index b55f9cd691..933f3f18f3 100644 --- a/drivers/vdpa/sfc/meson.build +++ b/drivers/vdpa/sfc/meson.build @@ -9,5 +9,4 @@ if ((arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')) and endif -fmt_name = 'sfc_vdpa' extra_flags = [] -- 2.38.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-11-23 09:55:58.410334359 +0000 +++ 0058-drivers-remove-unused-build-variable.patch 2022-11-23 09:55:57.121149438 +0000 @@ -1 +1 @@ -From abb98ed0b3869c89c5b307a99173ad9b6e587e2c Mon Sep 17 00:00:00 2001 +From 776c777a619c988dc710cfaeff82e7c7d022b000 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit abb98ed0b3869c89c5b307a99173ad9b6e587e2c ] + @@ -13 +14,0 @@ -Cc: stable@dpdk.org @@ -24 +25 @@ -index df4f79fa7e..c906f2d7a2 100644 +index 7aac329986..fb04835f36 100644 @@ -32 +33 @@ - if not dpdk_conf.has('RTE_COMMON_MLX5') + sources = files( @@ -34 +35 @@ -index 7e32095695..a830a4c7b9 100644 +index 9d9c9c00bc..b09fc1a9d5 100644 @@ -42 +43 @@ - if not dpdk_conf.has('RTE_COMMON_MLX5') + sources = files(