From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.sandvine.com (Mail1.sandvine.com [64.7.137.134]) by dpdk.org (Postfix) with ESMTP id 820292BA8 for ; Tue, 6 Dec 2016 21:16:23 +0100 (CET) Received: from wtl-rh70sliu-1.sandvine.com (192.168.196.90) by wtl-exchp-1.sandvine.com (192.168.194.176) with Microsoft SMTP Server id 14.3.319.2; Tue, 6 Dec 2016 15:16:22 -0500 Received: by wtl-rh70sliu-1.sandvine.com (Postfix, from userid 10411) id D29CE18554467; Tue, 6 Dec 2016 15:16:22 -0500 (EST) From: Tom Crugnale To: , CC: , Tom Crugnale Date: Tue, 6 Dec 2016 15:16:21 -0500 Message-ID: <1481055381-14243-1-git-send-email-tcrugnale@sandvine.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-C2ProcessedOrg: b2f06e69-072f-40ee-90c5-80a34e700794 Subject: [dpdk-dev] [PATCH v3] net/i40evf: fix reporting of imissed packets 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: , X-List-Received-Date: Tue, 06 Dec 2016 20:16:24 -0000 Missed packets on RX were erroneously being assigned to the ierrors struct member. Change it to be assigned to imissed. Fixes: 4861cde4 ("i40e: new poll mode driver") Signed-off-by: Tom Crugnale --- v3: * Fixed coding style issues v2: * Fixed line breaks in original patch submission --- drivers/net/i40e/i40e_ethdev_vf.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/i40e/i40e_ethdev_vf.c b/drivers/net/i40e/i40e_ethdev_vf.c index aa306d6..90876c8 100644 --- a/drivers/net/i40e/i40e_ethdev_vf.c +++ b/drivers/net/i40e/i40e_ethdev_vf.c @@ -952,7 +952,7 @@ struct rte_i40evf_xstats_name_off { } static int -i40evf_get_statics(struct rte_eth_dev *dev, struct rte_eth_stats *stats) +i40evf_get_stats(struct rte_eth_dev *dev, struct rte_eth_stats *stats) { int ret; struct i40e_eth_stats *pstats = NULL; @@ -965,7 +965,7 @@ struct rte_i40evf_xstats_name_off { pstats->rx_broadcast; stats->opackets = pstats->tx_broadcast + pstats->tx_multicast + pstats->tx_unicast; - stats->ierrors = pstats->rx_discards; + stats->imissed = pstats->rx_discards; stats->oerrors = pstats->tx_errors + pstats->tx_discards; stats->ibytes = pstats->rx_bytes; stats->obytes = pstats->tx_bytes; @@ -2277,8 +2277,8 @@ static int i40evf_dev_xstats_get(struct rte_eth_dev *dev, 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_stats(dev, stats)) + PMD_DRV_LOG(ERR, "Get stats failed"); } static void -- 1.8.3.1