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 E04251B490 for ; Fri, 4 Jan 2019 14:26:37 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 4FBC5C0524E1; Fri, 4 Jan 2019 13:26:37 +0000 (UTC) Received: from ktraynor.remote.csb (ovpn-117-13.ams2.redhat.com [10.36.117.13]) by smtp.corp.redhat.com (Postfix) with ESMTP id EEE365C224; Fri, 4 Jan 2019 13:26:35 +0000 (UTC) From: Kevin Traynor To: Gage Eads Cc: dpdk stable Date: Fri, 4 Jan 2019 13:23:56 +0000 Message-Id: <20190104132455.15170-14-ktraynor@redhat.com> In-Reply-To: <20190104132455.15170-1-ktraynor@redhat.com> References: <20190104132455.15170-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Fri, 04 Jan 2019 13:26:37 +0000 (UTC) Subject: [dpdk-stable] patch 'eventdev: fix xstats documentation typo' has been queued to LTS release 18.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: Fri, 04 Jan 2019 13:26:38 -0000 Hi, FYI, your patch has been queued to LTS release 18.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/11/19. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Thanks. Kevin Traynor --- >>From 489ad75e1a04e4194f016ccd1c45500341838570 Mon Sep 17 00:00:00 2001 From: Gage Eads Date: Mon, 3 Dec 2018 14:05:04 -0600 Subject: [PATCH] eventdev: fix xstats documentation typo [ upstream commit 1f7a11026988955b865a2b9f570f5cff087bd9b1 ] The eventdev extended stats documentation referred to two non-existent functions, rte_eventdev_xstats_get and rte_eventdev_get_xstats_by_name. Fixes: 3ed7fc039a ("eventdev: add extended stats") Signed-off-by: Gage Eads --- lib/librte_eventdev/rte_eventdev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h index d7eb69d1f..ef10a855d 100644 --- a/lib/librte_eventdev/rte_eventdev.h +++ b/lib/librte_eventdev/rte_eventdev.h @@ -1894,5 +1894,5 @@ rte_event_dev_xstats_names_get(uint8_t dev_id, * The id numbers of the stats to get. The ids can be got from the stat * position in the stat list from rte_event_dev_get_xstats_names(), or - * by using rte_eventdev_get_xstats_by_name() + * by using rte_event_dev_xstats_by_name_get(). * @param[out] values * The values for each stats request by ID. @@ -1922,5 +1922,5 @@ rte_event_dev_xstats_get(uint8_t dev_id, * @param[out] id * If non-NULL, the numerical id of the stat will be returned, so that further - * requests for the stat can be got using rte_eventdev_xstats_get, which will + * requests for the stat can be got using rte_event_dev_xstats_get, which will * be faster as it doesn't need to scan a list of names for the stat. * If the stat cannot be found, the id returned will be (unsigned)-1. -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2019-01-04 13:23:07.791430744 +0000 +++ 0014-eventdev-fix-xstats-documentation-typo.patch 2019-01-04 13:23:07.000000000 +0000 @@ -1,13 +1,14 @@ -From 1f7a11026988955b865a2b9f570f5cff087bd9b1 Mon Sep 17 00:00:00 2001 +From 489ad75e1a04e4194f016ccd1c45500341838570 Mon Sep 17 00:00:00 2001 From: Gage Eads Date: Mon, 3 Dec 2018 14:05:04 -0600 Subject: [PATCH] eventdev: fix xstats documentation typo +[ upstream commit 1f7a11026988955b865a2b9f570f5cff087bd9b1 ] + The eventdev extended stats documentation referred to two non-existent functions, rte_eventdev_xstats_get and rte_eventdev_get_xstats_by_name. Fixes: 3ed7fc039a ("eventdev: add extended stats") -Cc: stable@dpdk.org Signed-off-by: Gage Eads ---