From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 263AE1B173 for ; Wed, 24 Jan 2018 16:38:01 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id CC46D22416; Wed, 24 Jan 2018 10:38:00 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:38:00 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=fXXFhPYL8F1G5xKPS LVDg8LMG+At4GTnkzuvf3x6JGA=; b=CRlaXBAF8WNcfjnKWtTTtTJtOwMQ66E9I YpwjdC2oNkYaG+nAbomDxVSDpDtYTy/ZRNgPQWpyG6RiFVzTSAqjjph5w4Wr0hQk 0DrJGaHCsUeOjSZJcwk2azW3XMdnZM1nmzrlrSZ1Lvgmf9C6p9e1+hsu+PTxUtkg JSzj7rcjGulN/0LHr0XxT7XGS9q8Zt17e0upuwaXbWgTPTNscLXrzk7CbIOVB4il BOXrTJoRZAUseZWuqeG/cWW813Xw5xxmct2THMgLJj/i5eJ3Ykbr1Bl8vVEYsaNq QtRsT+VEm85uEcVBBJ6Z4raZ9e5N6O26RT9zabKJ07aKAXFRj5fXw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=fXXFhPYL8F1G5xKPSLVDg8LMG+At4GTnkzuvf3x6JGA=; b=q998mR6h gnbQs7parwHxw6o0rVIsjIoy3cqSZZ9T0ceFRlAVB/cTmwjuHjeWeFrWQHLC1d9i L/lhpRjvjyBOVkD4R7ZpVaWyG8GVnRVwvE3fn8r0PkDHtk/6Ukve0o7UR4QZ6ILb y5Xq6cTqA5Oqj2KGi2rIVPpJ1M0AHZZ/+Pf8WR2POg8j72NM4O5f0HlP0vNt0YWy eayj4hOTbm/GJHNzAnYCZoLEC3yQzzmQZ4y62uGqgsEXLuUl65F1qvl4Ww6A2rd3 bjknrOtjeriVGEPuYN4u/8DLuNDZnKfoBtEG0pN2/fT8pSNhaoA0FIMgtsp4tUND l553LaI5+qZu4Q== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 428DB7E354; Wed, 24 Jan 2018 10:37:57 -0500 (EST) From: Yuanhan Liu To: Olivier Matz Cc: Thibaut Collet , Ferruh Yigit , dpdk stable Date: Wed, 24 Jan 2018 23:31:57 +0800 Message-Id: <1516808026-25523-49-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> References: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'ethdev: fix missing imissed counter in xstats' has been queued to LTS release 17.11.1 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: , X-List-Received-Date: Wed, 24 Jan 2018 15:38:01 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/26/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 5537bb13250b095b34b8d04880d5dbe02401746d Mon Sep 17 00:00:00 2001 From: Olivier Matz Date: Thu, 14 Dec 2017 15:23:00 +0100 Subject: [PATCH] ethdev: fix missing imissed counter in xstats [ upstream commit 831d94fdb6fc2bc1b658e81be5838f3ebe633785 ] imissed counter has been set as deprecated in commit 49f386542af4 ("ethdev: remove driver specific stats") and removed from the rte_eth_xstats_name_off structure. The imissed counter has been restored few commits later but has not been restored in the rte_eth_stats structure. Add it back. Fixes: 4eadb8ba11b7 ("ethdev: do not deprecate imissed counter") Signed-off-by: Thibaut Collet Signed-off-by: Olivier Matz Reviewed-by: Ferruh Yigit --- lib/librte_ether/rte_ethdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index 318af28..4f492e3 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -93,6 +93,7 @@ static const struct rte_eth_xstats_name_off rte_stats_strings[] = { {"tx_good_packets", offsetof(struct rte_eth_stats, opackets)}, {"rx_good_bytes", offsetof(struct rte_eth_stats, ibytes)}, {"tx_good_bytes", offsetof(struct rte_eth_stats, obytes)}, + {"rx_missed_errors", offsetof(struct rte_eth_stats, imissed)}, {"rx_errors", offsetof(struct rte_eth_stats, ierrors)}, {"tx_errors", offsetof(struct rte_eth_stats, oerrors)}, {"rx_mbuf_allocation_errors", offsetof(struct rte_eth_stats, -- 2.7.4