From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id DC6C3A0613 for ; Wed, 28 Aug 2019 15:43:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D49681C21E; Wed, 28 Aug 2019 15:43:59 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 969F01BF82 for ; Wed, 28 Aug 2019 15:43:58 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 16CA910881CF; Wed, 28 Aug 2019 13:43:58 +0000 (UTC) Received: from rh.redhat.com (ovpn-117-52.ams2.redhat.com [10.36.117.52]) by smtp.corp.redhat.com (Postfix) with ESMTP id E4016194BE; Wed, 28 Aug 2019 13:43:56 +0000 (UTC) From: Kevin Traynor To: Dekel Peled Cc: Viacheslav Ovsiienko , dpdk stable Date: Wed, 28 Aug 2019 14:42:28 +0100 Message-Id: <20190828134234.20547-52-ktraynor@redhat.com> In-Reply-To: <20190828134234.20547-1-ktraynor@redhat.com> References: <20190828134234.20547-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.65]); Wed, 28 Aug 2019 13:43:58 +0000 (UTC) Subject: [dpdk-stable] patch 'net/mlx5: fix typos in comments' has been queued to LTS release 18.11.3 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to LTS release 18.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 09/04/19. 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-queue This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable-queue/commit/93606ec5cbac3efc4eb3162227bebdb6213804d6 Thanks. Kevin Traynor --- >From 93606ec5cbac3efc4eb3162227bebdb6213804d6 Mon Sep 17 00:00:00 2001 From: Dekel Peled Date: Thu, 18 Jul 2019 22:40:52 +0300 Subject: [PATCH] net/mlx5: fix typos in comments [ upstream commit 42280dd91b9e2c68eb4f6842cf2c66decb4e87d1 ] Some spelling mistakes were found in comments. This patch fixes them. Fixes: d10b09db0a45 ("net/mlx5: fix allocation when no memory on device NUMA node") Fixes: fc2c498ccb94 ("net/mlx5: add Direct Verbs translate items") Fixes: 7d6bf6b866b8 ("net/mlx5: add Multi-Packet Rx support") Fixes: f6d9ab4e769f ("net/mlx5: check Tx queue size overflow") Signed-off-by: Dekel Peled Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5.h | 2 +- drivers/net/mlx5/mlx5_flow.c | 2 +- drivers/net/mlx5/mlx5_rxq.c | 2 +- drivers/net/mlx5/mlx5_txq.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/mlx5/mlx5.h b/drivers/net/mlx5/mlx5.h index 91efd21b9..6902013b7 100644 --- a/drivers/net/mlx5/mlx5.h +++ b/drivers/net/mlx5/mlx5.h @@ -146,5 +146,5 @@ struct mlx5_dev_config { /** - * Type of objet being allocated. + * Type of object being allocated. */ enum mlx5_verbs_alloc_type { diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index de8a77686..8e6585d18 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -474,5 +474,5 @@ mlx5_flow_item_acceptable(const struct rte_flow_item *item, * * @return - * The hash fileds that should be used. + * The hash fields that should be used. */ uint64_t diff --git a/drivers/net/mlx5/mlx5_rxq.c b/drivers/net/mlx5/mlx5_rxq.c index 416c07342..45f49669c 100644 --- a/drivers/net/mlx5/mlx5_rxq.c +++ b/drivers/net/mlx5/mlx5_rxq.c @@ -1166,5 +1166,5 @@ mlx5_mprq_free_mp(struct rte_eth_dev *dev) /* * If a buffer in the pool has been externally attached to a mbuf and it - * is still in use by application, destroying the Rx qeueue can spoil + * is still in use by application, destroying the Rx queue can spoil * the packet. It is unlikely to happen but if application dynamically * creates and destroys with holding Rx packets, this can happen. diff --git a/drivers/net/mlx5/mlx5_txq.c b/drivers/net/mlx5/mlx5_txq.c index a3c6fdd18..9d1c33eba 100644 --- a/drivers/net/mlx5/mlx5_txq.c +++ b/drivers/net/mlx5/mlx5_txq.c @@ -640,5 +640,5 @@ mlx5_txq_ibv_verify(struct rte_eth_dev *dev) /** - * Calcuate the total number of WQEBB for Tx queue. + * Calculate the total number of WQEBB for Tx queue. * * Simplified version of calc_sq_size() in rdma-core. -- 2.20.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-08-28 14:32:34.958140648 +0100 +++ 0053-net-mlx5-fix-typos-in-comments.patch 2019-08-28 14:32:31.728955421 +0100 @@ -1 +1 @@ -From 42280dd91b9e2c68eb4f6842cf2c66decb4e87d1 Mon Sep 17 00:00:00 2001 +From 93606ec5cbac3efc4eb3162227bebdb6213804d6 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 42280dd91b9e2c68eb4f6842cf2c66decb4e87d1 ] + @@ -13 +14,0 @@ -Cc: stable@dpdk.org @@ -25 +26 @@ -index 2bd2aa6d5..623037135 100644 +index 91efd21b9..6902013b7 100644 @@ -28 +29 @@ -@@ -233,5 +233,5 @@ struct mlx5_dev_config { +@@ -146,5 +146,5 @@ struct mlx5_dev_config { @@ -36 +37 @@ -index 710998554..e082cbbd4 100644 +index de8a77686..8e6585d18 100644 @@ -47 +48 @@ -index 3e82f71e3..39b8b7a8f 100644 +index 416c07342..45f49669c 100644 @@ -50 +51 @@ -@@ -1123,5 +1123,5 @@ mlx5_mprq_free_mp(struct rte_eth_dev *dev) +@@ -1166,5 +1166,5 @@ mlx5_mprq_free_mp(struct rte_eth_dev *dev) @@ -58 +59 @@ -index 77410955f..82493d7cb 100644 +index a3c6fdd18..9d1c33eba 100644 @@ -61 +62 @@ -@@ -670,5 +670,5 @@ mlx5_txq_ibv_verify(struct rte_eth_dev *dev) +@@ -640,5 +640,5 @@ mlx5_txq_ibv_verify(struct rte_eth_dev *dev)