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 Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by smtp.lore.kernel.org (Postfix) with ESMTP id 17710C61DC2 for ; Thu, 27 Aug 2026 13:56:09 +0000 (UTC) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EE4F64027D; Thu, 27 Aug 2026 15:56:08 +0200 (CEST) Received: from dkmailrelay1.smartsharesystems.com (smartserver.smartsharesystems.com [77.243.40.215]) by mails.dpdk.org (Postfix) with ESMTP id 93ED44003C for ; Thu, 27 Aug 2026 15:56:07 +0200 (CEST) Received: from smartserver.smartsharesystems.com (smartserver.smartsharesys.local [192.168.4.10]) by dkmailrelay1.smartsharesystems.com (Postfix) with ESMTP id 69EB4207AA; Thu, 27 Aug 2026 15:56:07 +0200 (CEST) Received: from dkrd4.smartsharesys.local ([192.168.4.26]) by smartserver.smartsharesystems.com with Microsoft SMTPSVC(6.0.3790.4675); Thu, 27 Aug 2026 15:56:07 +0200 From: =?UTF-8?q?Morten=20Br=C3=B8rup?= To: dev@dpdk.org, Bruce Richardson , Konstantin Ananyev Cc: =?UTF-8?q?Morten=20Br=C3=B8rup?= Subject: [PATCH v3 0/2] introduce pile stack and mempool driver Date: Thu, 27 Aug 2026 13:55:54 +0000 Message-ID: <20260827135556.522443-1-mb@smartsharesystems.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20260812134756.1829613-1-mb@smartsharesystems.com> References: <20260812134756.1829613-1-mb@smartsharesystems.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 27 Aug 2026 13:56:07.0331 (UTC) FILETIME=[CEE0B730:01DD362B] 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 Added a new high-performance lock-free "pile", using the Stack API, and an accompanying mempool driver. Morten Brørup (2): stack: introduce pile mempool: introduce pile driver app/test/test_stack.c | 71 ++++- app/test/test_stack_perf.c | 15 +- config/rte_config.h | 3 + doc/guides/mempool/stack.rst | 12 +- doc/guides/prog_guide/stack_lib.rst | 67 +++- drivers/mempool/stack/rte_mempool_stack.c | 90 +++++- lib/mempool/rte_mempool.h | 4 +- lib/mempool/rte_mempool_ops.c | 27 +- lib/stack/meson.build | 3 +- lib/stack/rte_stack.c | 18 +- lib/stack/rte_stack.h | 65 ++++ lib/stack/rte_stack_lf.h | 22 ++ lib/stack/rte_stack_lf_c11.h | 20 +- lib/stack/rte_stack_lf_generic.h | 19 +- lib/stack/rte_stack_lf_stubs.h | 4 +- lib/stack/rte_stack_pile.c | 35 +++ lib/stack/rte_stack_pile.h | 359 ++++++++++++++++++++++ 17 files changed, 761 insertions(+), 73 deletions(-) create mode 100644 lib/stack/rte_stack_pile.c create mode 100644 lib/stack/rte_stack_pile.h -- 2.43.0