From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f193.google.com (mail-wr0-f193.google.com [209.85.128.193]) by dpdk.org (Postfix) with ESMTP id 0CC501B306 for ; Fri, 26 Jan 2018 14:15:37 +0100 (CET) Received: by mail-wr0-f193.google.com with SMTP id e41so503886wre.9 for ; Fri, 26 Jan 2018 05:15:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=Uve+mX/ir9ERHkehm0hzIMBnXcW0uKV6lvsRtCaEoO4=; b=Y2AenIKbvPsckKCnoOfpdlYfv0Me+CPzF5OT4Js9lYwDtwokaLCyiR6X4UyXZ97lIz qT1lmir168OCfnalFpAlqsqguXW1VVYoVbQwk+zBwqw0ZOE3GGwOXi8BFRVpFh5Y7whT hcG8bnBFsQAqLzg3mMLzBGel10tjQ9yn0Aw8nyTuGMkw/KRq81/49ocFk6nLb9Kz3ifN mclMrD4jPUpIbJuvz2bzYih2D9YPx248KTjqq2+4a68oUEEPn/xWEq/535iCunZv8IuR DTBH0UtA7EmliDY5dNDa4kNh9roiVKsmED37SpmHJZlpymj+xl4v+/kztM6SQwb9kuXn gzHA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=Uve+mX/ir9ERHkehm0hzIMBnXcW0uKV6lvsRtCaEoO4=; b=nT4yzwA98xSJ6atUVgZS+1NIJfbxo3+o9fQCjMFh8PeD/qFLYLqmVptrySlAJ+EB/M 7J+3MDQCNfHp9AtDLnXEV//n6EjaZzXzpAZXs5P4vpBElP5ZN+RjASKnwmGreENo+zAV kJ/KZ2s4WiXNVV1wc59oz9glxwmmcnPLOMo9dLFmBrLhiv+O6BQkOGsbybeSE1hEiQQA d/8lA8nkaaYeC/Vop7m83KaLHLGLM/OMn6QbOzPAUrnbRqQxwHcbKK+bLRKyw+9Dj+Mo A4FY5XUWNRcC9epZ6IdJlO8MKMDuil7xEFz/Q9Q04lWRakm/HlIJjpNguGi8d5nGUXwU hpvA== X-Gm-Message-State: AKwxyteaNlbXMrg6JQB17z5+iLtPFSlQ+O4UVDM+xn5Jy8jO1VOyh7Yq UUp5xcSEPZ8UgXfWK8GrVo4= X-Google-Smtp-Source: AH8x225x5vDaHBOb6J93DK7fPxqdQRUHRca1gi2txShH2FPuSsswFqUxiZuI/PNWtf33Zxdl9C+tkg== X-Received: by 10.223.139.67 with SMTP id v3mr11543069wra.162.1516972536770; Fri, 26 Jan 2018 05:15:36 -0800 (PST) Received: from localhost ([2a00:23c5:bef3:400:9531:588b:44ae:bec4]) by smtp.gmail.com with ESMTPSA id 74sm4358185wmf.38.2018.01.26.05.15.36 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 26 Jan 2018 05:15:36 -0800 (PST) From: luca.boccassi@gmail.com To: Olivier Matz Cc: Thibaut Collet , Ferruh Yigit , dpdk stable Date: Fri, 26 Jan 2018 13:12:55 +0000 Message-Id: <20180126131332.15346-25-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.14.2 In-Reply-To: <20180126131332.15346-1-luca.boccassi@gmail.com> References: <20180126131332.15346-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'ethdev: fix missing imissed counter in xstats' has been queued to LTS release 16.11.5 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: Fri, 26 Jan 2018 13:15:37 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.5 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/28/18. So please shout if anyone has objections. Thanks. Luca Boccassi --- >>From 4aa6d8138a96d6733e74c82b3cfe13f3e486b9e6 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 ea545250a..4679dc698 100644 --- a/lib/librte_ether/rte_ethdev.c +++ b/lib/librte_ether/rte_ethdev.c @@ -94,6 +94,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.14.2