From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 812711B1A8 for ; Wed, 24 Jan 2018 16:08:11 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2018 07:08:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,408,1511856000"; d="scan'208";a="12697810" Received: from silpixa00399502.ir.intel.com (HELO silpixa00399502.ger.corp.intel.com) ([10.237.223.218]) by fmsmga007.fm.intel.com with ESMTP; 24 Jan 2018 07:08:09 -0800 From: Marko Kovacevic To: dev@dpdk.org Cc: john.mcnamara@intel.com, Marko Kovacevic , amr.mokhtar@intel.com Date: Wed, 24 Jan 2018 15:07:45 +0000 Message-Id: <20180124150745.11571-1-marko.kovacevic@intel.com> X-Mailer: git-send-email 2.9.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2] doc: fix bbdev test guide build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jan 2018 15:08:11 -0000 Fix build issue with pdf guides. Some indentations in the bbdev test application doc were causing build failures. Latex Log message:       doc.log:! LaTeX Error: Too deeply nested.     Fixes: f714a18885a6 ("app/testbbdev: add test application for bbdev") Cc: amr.mokhtar@intel.com   Signed-off-by: Marko Kovacevic --- V2: Added more information into commit message about the issue doc/guides/tools/testbbdev.rst | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/guides/tools/testbbdev.rst b/doc/guides/tools/testbbdev.rst index c7aac49..5c7112d 100644 --- a/doc/guides/tools/testbbdev.rst +++ b/doc/guides/tools/testbbdev.rst @@ -71,24 +71,26 @@ The following are the command-line options: Defines test cases to run. If not specified all available tests are run. The following tests can be run: - * unittest + + * unittest Small unit tests witch check basic functionality of bbdev library. - * latency + * latency Test calculates three latency metrics: - * offload_latency_tc + + * offload_latency_tc measures the cost of offloading enqueue and dequeue operations. - * offload_latency_empty_q_tc + * offload_latency_empty_q_tc measures the cost of offloading a dequeue operation from an empty queue. checks how long last dequeueing if there is no operations to dequeue - * operation_latency_tc + * operation_latency_tc measures the time difference from the first attempt to enqueue till the first successful dequeue. - * validation + * validation Test do enqueue on given vector and compare output after dequeueing. - * throughput + * throughput Test measures the achieved throughput on the available lcores. Results are printed in million operations per second and million bits per second. - * interrupt + * interrupt The same test as 'throughput' but uses interrupts instead of PMD to perform the dequeue. -- 2.9.5