From patchwork Thu Dec 3 13:45:38 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 9306 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 324EE8F9E; Thu, 3 Dec 2015 14:47:14 +0100 (CET) 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) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=VIw3rSV9uXh7bVi3nI0mJVar3VfVHLVr82kOR7MTRHw=; b=W/bkST6xSwBkSRNlSRAOyBKXABg9MlBd3Oyov2j5rjtGFlmxd1rOkqBKslZ953KHej GIOwoofD6p982yp7SDYsTQ4DDy3ej/rsTVYKIJDcIIwLaVa8axYmEydOTy/p7v92q2v7 q2DocT33XdEow29dqEvrg1+BlR7Z3LJ4rdN8PJ/pvWC89SsJMon4CvCtz7i6SemqsJVg BRAcNdz4rciUgnSh0nTYktur5+Me2fCDP0Fw45vWvm6A1HFUTjVL7jiT5n3zgNIYuJHs N1MVexmfoNDZFMbmaRYZKJRn8EFR9k5RYa7F6q6iRlwEDXj4tmmmVZTbRY0rMMNMpm2P NFfg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=VIw3rSV9uXh7bVi3nI0mJVar3VfVHLVr82kOR7MTRHw=; b=Af+ck41bLbj6Z1hqfuhG7JsgBU7aAayH26Wy2QSh9cHZHmt7F7ig6+RPwleJJwZIjE MCzOTnltVcbRgv5dXkauhM2sH1HRDPhvmSm9Xxt+kWcKFJ9CSBwX4hrRj0zANdc8RYJr R9damVI0O/DBVXs/4wqj7cmUOZuUglGg9oGRZqynvY6oLI9xIgyIx4SUA6NS4UWnXlJx FG5kke3s5bRATFV/FiqWtC70hbC30jOuciFBqTcdUQioQ+K3Tpa+JnR2pCyprsIMCKmU q2AGPvNwZoI+ftwaboNclXT7TQhkjMTRWwlZrwjqfv8YQ7IHlSbHeSfvEdKV9HNuQ8Pu iL2g== X-Gm-Message-State: ALoCoQnjm+N/My0O9/Gv9SkV5dMoIsa4oRPrIQcJdy0qzK2dUbDJcxZo3/c+ZMFObTFImgJI8inX X-Received: by 10.28.147.129 with SMTP id v123mr12723386wmd.98.1449150431182; Thu, 03 Dec 2015 05:47:11 -0800 (PST) Received: from XPS13.dev.6wind.com (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id k133sm8063912wmg.18.2015.12.03.05.47.10 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 03 Dec 2015 05:47:10 -0800 (PST) From: Thomas Monjalon To: dev@dpdk.org Date: Thu, 3 Dec 2015 14:45:38 +0100 Message-Id: <1449150340-21984-12-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.5.2 In-Reply-To: <1449150340-21984-1-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> Subject: [dpdk-dev] [PATCH v3 11/13] app/proc_info: rename binary with prefix X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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