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 5459547D0 for ; Mon, 14 Nov 2016 19:05:33 +0100 (CET) Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A6F5A69186; Mon, 14 Nov 2016 18:05:32 +0000 (UTC) Received: from ktraynor.remote.csb (vpn1-5-126.ams2.redhat.com [10.36.5.126]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id uAEI5UkM012395; Mon, 14 Nov 2016 13:05:31 -0500 To: Remy Horton , dev@dpdk.org References: <1479104089-27862-1-git-send-email-remy.horton@intel.com> <1479104089-27862-3-git-send-email-remy.horton@intel.com> Cc: Helin Zhang , Jingjing Wu From: Kevin Traynor X-Enigmail-Draft-Status: N1110 Organization: Red Hat Message-ID: <96d231b4-78ec-c048-aea7-0ec06bc38b3b@redhat.com> Date: Mon, 14 Nov 2016 18:05:30 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1479104089-27862-3-git-send-email-remy.horton@intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Mon, 14 Nov 2016 18:05:32 +0000 (UTC) Subject: Re: [dpdk-dev] [PATCH v1 2/2] net/i40e: fix spelling errors X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2016 18:05:33 -0000 On 11/14/2016 06:14 AM, Remy Horton wrote: > Fixes: da61cd084976 ("i40evf: add extended stats") > Fixes: 0eedec25ea36 ("i40e: clean log messages") > Acked-by: Kevin Traynor > Signed-off-by: Remy Horton > --- > drivers/net/i40e/i40e_ethdev.c | 2 +- > drivers/net/i40e/i40e_ethdev_vf.c | 6 +++--- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/net/i40e/i40e_ethdev.c b/drivers/net/i40e/i40e_ethdev.c > index 67778ba..f102328 100644 > --- a/drivers/net/i40e/i40e_ethdev.c > +++ b/drivers/net/i40e/i40e_ethdev.c > @@ -4107,7 +4107,7 @@ i40e_veb_setup(struct i40e_pf *pf, struct i40e_vsi *vsi) > ret = i40e_aq_get_veb_parameters(hw, veb->seid, NULL, NULL, > &veb->stats_idx, NULL, NULL, NULL); > if (ret != I40E_SUCCESS) { > - PMD_DRV_LOG(ERR, "Get veb statics index failed, aq_err: %d", > + PMD_DRV_LOG(ERR, "Get veb statistics index failed, aq_err: %d", > hw->aq.asq_last_status); > goto fail; > } > diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c > index afae2ec..1431b6e 100644 > --- a/drivers/net/i40e/i40e_ethdev_vf.c > +++ b/drivers/net/i40e/i40e_ethdev_vf.c > @@ -952,7 +952,7 @@ i40evf_update_stats(struct rte_eth_dev *dev, struct i40e_eth_stats **pstats) > } > > static int > -i40evf_get_statics(struct rte_eth_dev *dev, struct rte_eth_stats *stats) > +i40evf_get_statistics(struct rte_eth_dev *dev, struct rte_eth_stats *stats) > { > int ret; > struct i40e_eth_stats *pstats = NULL; > @@ -2277,8 +2277,8 @@ i40evf_dev_info_get(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info) > static void > i40evf_dev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats) > { > - if (i40evf_get_statics(dev, stats)) > - PMD_DRV_LOG(ERR, "Get statics failed"); > + if (i40evf_get_statistics(dev, stats)) > + PMD_DRV_LOG(ERR, "Get statistics failed"); > } > > static void >