From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 534B7A49A for ; Wed, 24 Jan 2018 13:07:52 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2018 04:07:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,406,1511856000"; d="scan'208";a="12245731" Received: from silpixa00399502.ir.intel.com (HELO silpixa00399502.ger.corp.intel.com) ([10.237.223.218]) by orsmga007.jf.intel.com with ESMTP; 24 Jan 2018 04:07:49 -0800 From: Marko Kovacevic To: dev@dpdk.org Cc: john.mcnamara@intel.com, marko.kovacevic@intel.com, amr.mokhtar@intel.com Date: Wed, 24 Jan 2018 12:07:25 +0000 Message-Id: <20180124120725.9279-1-marko.kovacevic@intel.com> X-Mailer: git-send-email 2.9.5 Subject: [dpdk-dev] [PATCH v1] 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 12:07:53 -0000 Some indentations in the bbdev test application were causing build failures. Which are solved by this commit. Fixes: f714a18885a6 ("app/testbbdev: add test application for bbdev") Cc: amr.mokhtar@intel.com Signed-off-by: Marko Kovacevic --- 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