From patchwork Thu Jan 24 12:05:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: "Kovacevic, Marko" X-Patchwork-Id: 50025 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 592232B9A; Thu, 24 Jan 2019 13:06:02 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 721FFDE3 for ; Thu, 24 Jan 2019 13:06:00 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Jan 2019 04:05:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,516,1539673200"; d="scan'208";a="294037384" Received: from silpixa00399502.ir.intel.com (HELO silpixa00399502.ger.corp.intel.com) ([10.237.222.111]) by orsmga005.jf.intel.com with ESMTP; 24 Jan 2019 04:05:57 -0800 From: Marko Kovacevic To: dev@dpdk.org Cc: akhil.goyal@nxp.com, Marko Kovacevic Date: Thu, 24 Jan 2019 12:05:55 +0000 Message-Id: <20190124120555.10548-1-marko.kovacevic@intel.com> X-Mailer: git-send-email 2.9.5 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] test/compress: fix size of test buffer 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Changed size of test buffer to 100 to allow qat to run compress unit-test, qat_comp_process_response(): QAT intermediate buffer may be too small for output, try configuring a larger size Fixes: c1bbb613ce96 ("test/compress: add out of space test") Cc: marko.kovacevic@intel.com Signed-off-by: Marko Kovacevic --- test/test/test_compressdev.c | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/test/test/test_compressdev.c b/test/test/test_compressdev.c index e8476ed..4db65c4 100644 --- a/test/test/test_compressdev.c +++ b/test/test/test_compressdev.c @@ -42,7 +42,7 @@ #define GZIP_HEADER_SIZE 10 #define GZIP_TRAILER_SIZE 8 -#define OUT_OF_SPACE_BUF 1 +#define OUT_OF_SPACE_BUF 100 const char * huffman_type_strings[] = { @@ -597,13 +597,15 @@ prepare_sgl_bufs(const char *test_buf, struct rte_mbuf *head_buf, uint32_t total_data_size, struct rte_mempool *small_mbuf_pool, struct rte_mempool *large_mbuf_pool, - uint8_t limit_segs_in_sgl) + uint8_t limit_segs_in_sgl, + const struct test_data_params *test_params) { uint32_t remaining_data = total_data_size; uint16_t num_remaining_segs = DIV_CEIL(remaining_data, SMALL_SEG_SIZE); struct rte_mempool *pool; struct rte_mbuf *next_seg; uint32_t data_size; + unsigned int out_of_space = test_params->out_of_space; char *buf_ptr; const char *data_ptr = test_buf; uint16_t i; @@ -639,6 +641,10 @@ prepare_sgl_bufs(const char *test_buf, struct rte_mbuf *head_buf, * Allocate the rest of the segments, * copy the rest of the data and chain the segments. */ + if (out_of_space) + num_remaining_segs = 1; + + for (i = 0; i < num_remaining_segs; i++) { if (i == (num_remaining_segs - 1)) { @@ -647,9 +653,11 @@ prepare_sgl_bufs(const char *test_buf, struct rte_mbuf *head_buf, pool = large_mbuf_pool; else pool = small_mbuf_pool; - data_size = remaining_data; + out_of_space ? data_size = out_of_space : + (data_size = remaining_data); } else { - data_size = SMALL_SEG_SIZE; + + (data_size = SMALL_SEG_SIZE); pool = small_mbuf_pool; } @@ -759,7 +767,8 @@ test_deflate_comp_decomp(const struct interim_data_params *int_data, data_size, ts_params->small_mbuf_pool, ts_params->large_mbuf_pool, - MAX_SEGS) < 0) + MAX_SEGS, + test_data) < 0) goto exit; } } else { @@ -791,7 +800,8 @@ test_deflate_comp_decomp(const struct interim_data_params *int_data, data_size, ts_params->small_mbuf_pool, ts_params->large_mbuf_pool, - MAX_SEGS) < 0) + MAX_SEGS, + test_data) < 0) goto exit; } @@ -1019,7 +1029,8 @@ test_deflate_comp_decomp(const struct interim_data_params *int_data, data_size, ts_params->small_mbuf_pool, ts_params->large_mbuf_pool, - MAX_SEGS) < 0) + MAX_SEGS, + test_data) < 0) goto exit; }