From patchwork Wed Mar 28 01:07:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rami Rosen X-Patchwork-Id: 36587 X-Patchwork-Delegate: shahafs@mellanox.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D80A8152A; Tue, 27 Mar 2018 20:11:24 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 96CCA255 for ; Tue, 27 Mar 2018 20:11:23 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 27 Mar 2018 11:11:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.48,367,1517904000"; d="scan'208";a="45761305" Received: from imail001.iil.intel.com ([10.184.207.12]) by orsmga002.jf.intel.com with ESMTP; 27 Mar 2018 11:11:20 -0700 Received: from desku.iil.intel.com (desku.iil.intel.com [143.185.141.162]) by imail001.iil.intel.com with ESMTP id w2RIBFwN003009; Tue, 27 Mar 2018 21:11:15 +0300 From: Rami Rosen To: adrien.mazarguil@6wind.com Cc: dev@dpdk.org, Rami Rosen Date: Tue, 27 Mar 2018 21:07:09 -0400 Message-Id: <20180328010709.17683-1-ramirose@gmail.com> X-Mailer: git-send-email 2.14.3 Subject: [dpdk-dev] [PATCH] net/mlx4: fix a typo in mlx4 header file. X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes a trivial typo in mlx4 header file. Signed-off-by: Rami Rosen Acked-by: Adrien Mazarguil --- drivers/net/mlx4/mlx4_rxtx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mlx4/mlx4_rxtx.h b/drivers/net/mlx4/mlx4_rxtx.h index c12bd39a9..dd46ac006 100644 --- a/drivers/net/mlx4/mlx4_rxtx.h +++ b/drivers/net/mlx4/mlx4_rxtx.h @@ -83,7 +83,7 @@ struct txq_elt { }; }; -/** Rx queue counters. */ +/** Tx queue counters. */ struct mlx4_txq_stats { unsigned int idx; /**< Mapping index. */ uint64_t opackets; /**< Total of successfully sent packets. */