From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 90E48C433E0 for ; Tue, 2 Feb 2021 11:49:04 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 120F664E9A for ; Tue, 2 Feb 2021 11:49:03 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 120F664E9A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0CDD5240272; Tue, 2 Feb 2021 12:49:03 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 870F3240270 for ; Tue, 2 Feb 2021 12:49:01 +0100 (CET) IronPort-SDR: UsPsCgHF9AG3vGziUd3G9aqilqLxPhTkM2fGz+bwG8x4X3fN3PEw7mAKOrBhbWmXbUqbUyZTy6 oAozu8XClupw== X-IronPort-AV: E=McAfee;i="6000,8403,9882"; a="180064052" X-IronPort-AV: E=Sophos;i="5.79,394,1602572400"; d="scan'208";a="180064052" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2021 03:49:00 -0800 IronPort-SDR: 4pzh8P+k0CFdmWSiWmG7Sbor3BW5+gbr6YJiAyZlff9n3VetNat9xRV91MxK3DCmPjPyxzABDK 9z92mR6DZNYA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,394,1602572400"; d="scan'208";a="406134716" Received: from silpixa00400355.ir.intel.com (HELO silpixa00400355.ger.corp.intel.com) ([10.237.223.148]) by fmsmga004.fm.intel.com with ESMTP; 02 Feb 2021 03:48:57 -0800 From: Ciara Power To: dev@dpdk.org Cc: akhil.goyal@nxp.com, declan.doherty@intel.com, Ciara Power Date: Tue, 2 Feb 2021 11:48:47 +0000 Message-Id: <20210202114847.3724834-3-ciara.power@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210202114847.3724834-1-ciara.power@intel.com> References: <20210202114847.3724834-1-ciara.power@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 2/2] doc: fix crypto perf script guide X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The guide for using the crypto perf graphing script had some incorrect indentation, unnecessary blank lines, and a missing argument in one of the usage examples. These are corrected in this patch. Fixes: f400e0b82bf1 ("app/crypto-perf: add script to graph perf results") Signed-off-by: Ciara Power --- doc/guides/tools/cryptoperf.rst | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/doc/guides/tools/cryptoperf.rst b/doc/guides/tools/cryptoperf.rst index 86c5a8aa16..7479af60a9 100644 --- a/doc/guides/tools/cryptoperf.rst +++ b/doc/guides/tools/cryptoperf.rst @@ -545,8 +545,7 @@ The following are the application optional command-line options: * ``-h, --help`` - Display usage information and quit - + Display usage information and quit. * ``-f , --file-path `` @@ -555,8 +554,8 @@ The following are the application optional command-line options: .. code-block:: console - ./dpdk-graph-crypto-perf -f /app/dpdk-test-crypto-perf - + ./dpdk-graph-crypto-perf \ + -f /app/dpdk-test-crypto-perf * ``-t , --test-suites `` @@ -574,7 +573,6 @@ The following are the application optional command-line options: ./dpdk-graph-crypto-perf configs/crypto-perf-aesni-mb -t throughput latency - * ``-o , --output-path `` Specify directory to use for output files. @@ -584,7 +582,6 @@ The following are the application optional command-line options: ./dpdk-graph-crypto-perf -o - * ``-v, --verbose`` Enable verbose output. This displays ``dpdk-test-crypto-perf`` app output in real-time. -- 2.25.1