From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH v3 11/13] app/proc_info: rename binary with prefix Date: Thu, 3 Dec 2015 14:45:38 +0100 Message-ID: <1449150340-21984-12-git-send-email-thomas.monjalon@6wind.com> References: <1449118929-19962-1-git-send-email-thomas.monjalon@6wind.com> <1449150340-21984-1-git-send-email-thomas.monjalon@6wind.com> To: dev@dpdk.org Return-path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 488BE8E64 for ; Thu, 3 Dec 2015 14:47:11 +0100 (CET) Received: by wmuu63 with SMTP id u63so21796299wmu.0 for ; Thu, 03 Dec 2015 05:47:11 -0800 (PST) In-Reply-To: <1449150340-21984-1-git-send-email-thomas.monjalon@6wind.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In order to be installed system-wise, this application needs a prefix. So it makes clear that it is DPDK related. Signed-off-by: Thomas Monjalon Acked-by: Panu Matilainen --- app/proc_info/Makefile | 2 +- doc/guides/sample_app_ug/proc_info.rst | 8 ++++---- mk/rte.sdktest.mk | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/proc_info/Makefile b/app/proc_info/Makefile index 243b060..33e058e 100644 --- a/app/proc_info/Makefile +++ b/app/proc_info/Makefile @@ -31,7 +31,7 @@ include $(RTE_SDK)/mk/rte.vars.mk -APP = proc_info +APP = dpdk_proc_info CFLAGS += $(WERROR_FLAGS) diff --git a/doc/guides/sample_app_ug/proc_info.rst b/doc/guides/sample_app_ug/proc_info.rst index a0c0b06..542950b 100644 --- a/doc/guides/sample_app_ug/proc_info.rst +++ b/doc/guides/sample_app_ug/proc_info.rst @@ -30,10 +30,10 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -proc_info Application -======================== +dpdk_proc_info Application +========================== -The proc_info application is a Data Plane Development Kit (DPDK) application +The dpdk_proc_info application is a Data Plane Development Kit (DPDK) application that runs as a DPDK secondary process and is capable of retrieving port statistics, resetting port statistics and printing DPDK memory information. This application extends the original functionality that was supported by @@ -45,7 +45,7 @@ The application has a number of command line options: .. code-block:: console - ./$(RTE_TARGET)/app/proc_info -- -m | [-p PORTMASK] [--stats | --xstats | + ./$(RTE_TARGET)/app/dpdk_proc_info -- -m | [-p PORTMASK] [--stats | --xstats | --stats-reset | --xstats-reset] Parameters diff --git a/mk/rte.sdktest.mk b/mk/rte.sdktest.mk index 59a29de..ee25f28 100644 --- a/mk/rte.sdktest.mk +++ b/mk/rte.sdktest.mk @@ -66,7 +66,7 @@ test fast_test ring_test mempool_test perf_test: fi # this is a special target to ease the pain of running coverage tests -# this runs all the autotests, cmdline_test script and proc_info +# this runs all the autotests, cmdline_test script and dpdk_proc_info coverage: @mkdir -p $(AUTOTEST_DIR) ; \ cd $(AUTOTEST_DIR) ; \ @@ -78,7 +78,7 @@ coverage: $(RTE_OUTPUT)/app/test \ $(RTE_TARGET) \ $(BLACKLIST) $(WHITELIST) ; \ - $(RTE_OUTPUT)/app/proc_info --file-prefix=ring_perf -- -m; \ + $(RTE_OUTPUT)/app/dpdk_proc_info --file-prefix=ring_perf -- -m; \ else \ echo "No test found, please do a 'make build' first, or specify O=" ;\ fi -- 2.5.2