From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 50076A499 for ; Tue, 8 May 2018 18:54:50 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 May 2018 09:54:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,379,1520924400"; d="scan'208";a="53470574" Received: from silpixa00382658.ir.intel.com ([10.237.223.29]) by fmsmga001.fm.intel.com with ESMTP; 08 May 2018 09:54:48 -0700 From: Cristian Dumitrescu To: thomas@monjalon.net Cc: dev@dpdk.org Date: Tue, 8 May 2018 17:54:44 +0100 Message-Id: <1525798484-163383-1-git-send-email-cristian.dumitrescu@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [pull-request] next-pipeline 18.05 pre-rc3 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: Tue, 08 May 2018 16:54:50 -0000 The following changes since commit e2077a158e22451144d1b023f949f3232cfa62b3: doc: add DPAA2 QDMA rawdev guide (2018-05-08 12:21:13 +0200) are available in the git repository at: http://dpdk.org/git/next/dpdk-next-pipeline for you to fetch changes up to 93428c4929c97f9cd7b8cbf449070a2924501557: table: add dedicated params struct for cuckoo hash (2018-05-08 15:19:58 +0100) ---------------------------------------------------------------- Fan Zhang (4): examples/ip_pipeline: fix uninitialized scalar variable examples/ip_pipeline: fix logically dead node examples/ip_pipeline: fix buffer not null terminated. examples/ip_pipeline: fix buffer not null terminated Jasvinder Singh (5): examples/ip_pipeline: fix memory leak examples/ip_pipeline: fix buffer not null terminated examples/ip_pipeline: fix buffer not null terminated examples/ip_pipeline: fix buffer not null terminated table: add dedicated params struct for cuckoo hash Kevin Laatz (3): examples/ip_pipeline: fix resource leak examples/ip_pipeline: fix buffer not null terminated examples/ip_pipeline: fix buffer not null terminated Reshma Pattan (4): examples/ip_pipipeline: fix resource leak examples/ip_pipeline: fixes uninitialized scalar variable examples/ip_pipeline: fix buffer not null terminated examples/ip_pipeline: fix buffer not null terminated examples/ip_pipeline/action.c | 6 ++-- examples/ip_pipeline/cli.c | 12 +++---- examples/ip_pipeline/conn.c | 3 ++ examples/ip_pipeline/kni.c | 3 +- examples/ip_pipeline/link.c | 3 +- examples/ip_pipeline/mempool.c | 3 +- examples/ip_pipeline/pipeline.c | 3 +- examples/ip_pipeline/swq.c | 4 ++- examples/ip_pipeline/tap.c | 13 +++++--- examples/ip_pipeline/tmgr.c | 4 ++- lib/librte_table/Makefile | 1 + lib/librte_table/meson.build | 1 + lib/librte_table/rte_table_hash.h | 3 -- lib/librte_table/rte_table_hash_cuckoo.c | 11 +++--- lib/librte_table/rte_table_hash_cuckoo.h | 57 ++++++++++++++++++++++++++++++++ test/test-pipeline/main.h | 4 +++ test/test-pipeline/pipeline_hash.c | 26 ++++++++++++++- test/test/test_table.c | 11 ++++++ test/test/test_table.h | 6 ++++ test/test/test_table_combined.c | 4 +-- test/test/test_table_tables.c | 6 ++-- 21 files changed, 151 insertions(+), 33 deletions(-) create mode 100644 lib/librte_table/rte_table_hash_cuckoo.h