From patchwork Tue Oct 17 20:30:58 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 272 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 127FC43190; Tue, 17 Oct 2023 22:31:26 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AEF5C42E05; Tue, 17 Oct 2023 22:31:25 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 13477402DD for ; Tue, 17 Oct 2023 22:31:19 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 5E42B20B74C0; Tue, 17 Oct 2023 13:31:18 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5E42B20B74C0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1697574678; bh=vvt06ARSpa53+d3hajjeTjZhWI8pQeYQ04o9gFz42/c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=oFGEl552cbdofurbdbgDmrJhJY9/vJLM+D41/dVdrmrKB7ug76blPaxVwtsaSLNfS WXLqzbcreHHg+QaEv8Ph4AMsgasg+v7ALoIE/COVS87YPE2q4JfKNBMyEjGn5LPJGY VKfhZYUMsrFsrvx0xRoTFw5Iibu9xHu5BzebfTUI= From: Tyler Retzlaff To: dev@dpdk.org Cc: Akhil Goyal , Anatoly Burakov , Andrew Rybchenko , Bruce Richardson , Chenbo Xia , Ciara Power , David Christensen , David Hunt , Dmitry Kozlyuk , Dmitry Malloy , Elena Agostini , Erik Gabriel Carrillo , Fan Zhang , Ferruh Yigit , Harman Kalra , Harry van Haaren , Honnappa Nagarahalli , Jerin Jacob , Konstantin Ananyev , Matan Azrad , Maxime Coquelin , Narcisa Ana Maria Vasile , Nicolas Chautru , Olivier Matz , Ori Kam , Pallavi Kadam , Pavan Nikhilesh , Reshma Pattan , Sameh Gobriel , Shijith Thotton , Sivaprasad Tummala , Stephen Hemminger , Suanming Mou , Sunil Kumar Kori , Thomas Monjalon , Viacheslav Ovsiienko , Vladimir Medvedkin , Yipeng Wang , Tyler Retzlaff Subject: [PATCH v2 00/19] use rte optional stdatomic API Date: Tue, 17 Oct 2023 13:30:58 -0700 Message-Id: <1697574677-16578-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1697497745-20664-1-git-send-email-roretzla@linux.microsoft.com> References: <1697497745-20664-1-git-send-email-roretzla@linux.microsoft.com> 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 Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional stdatomic API. v2: * add #include to rte_mbuf_core.h * remove first two patches which were fixes that have been merged in another series Tyler Retzlaff (19): power: use rte optional stdatomic API bbdev: use rte optional stdatomic API eal: use rte optional stdatomic API eventdev: use rte optional stdatomic API gpudev: use rte optional stdatomic API ipsec: use rte optional stdatomic API mbuf: use rte optional stdatomic API mempool: use rte optional stdatomic API rcu: use rte optional stdatomic API pdump: use rte optional stdatomic API stack: use rte optional stdatomic API telemetry: use rte optional stdatomic API vhost: use rte optional stdatomic API cryptodev: use rte optional stdatomic API distributor: use rte optional stdatomic API ethdev: use rte optional stdatomic API hash: use rte optional stdatomic API timer: use rte optional stdatomic API ring: use rte optional stdatomic API drivers/event/cnxk/cnxk_tim_worker.h | 4 +- drivers/net/mlx5/mlx5_hws_cnt.h | 2 +- lib/bbdev/rte_bbdev.c | 6 +- lib/bbdev/rte_bbdev.h | 2 +- lib/cryptodev/rte_cryptodev.c | 22 +++--- lib/cryptodev/rte_cryptodev.h | 16 ++--- lib/distributor/distributor_private.h | 4 +- lib/distributor/rte_distributor.c | 54 +++++++-------- lib/eal/common/eal_common_launch.c | 10 +-- lib/eal/common/eal_common_mcfg.c | 2 +- lib/eal/common/eal_common_proc.c | 14 ++-- lib/eal/common/eal_common_thread.c | 26 +++---- lib/eal/common/eal_common_trace.c | 8 +-- lib/eal/common/eal_common_trace_ctf.c | 4 +- lib/eal/common/eal_memcfg.h | 2 +- lib/eal/common/eal_private.h | 4 +- lib/eal/common/eal_trace.h | 4 +- lib/eal/common/rte_service.c | 122 ++++++++++++++++----------------- lib/eal/freebsd/eal.c | 20 +++--- lib/eal/include/rte_epoll.h | 3 +- lib/eal/linux/eal.c | 26 +++---- lib/eal/linux/eal_interrupts.c | 42 ++++++------ lib/eal/ppc/include/rte_atomic.h | 6 +- lib/eal/windows/rte_thread.c | 8 ++- lib/ethdev/ethdev_driver.h | 16 ++--- lib/ethdev/ethdev_private.c | 6 +- lib/ethdev/rte_ethdev.c | 24 +++---- lib/ethdev/rte_ethdev.h | 16 ++--- lib/ethdev/rte_ethdev_core.h | 2 +- lib/eventdev/rte_event_timer_adapter.c | 66 +++++++++--------- lib/eventdev/rte_event_timer_adapter.h | 2 +- lib/gpudev/gpudev.c | 6 +- lib/gpudev/gpudev_driver.h | 2 +- lib/hash/rte_cuckoo_hash.c | 116 +++++++++++++++---------------- lib/hash/rte_cuckoo_hash.h | 6 +- lib/ipsec/ipsec_sqn.h | 2 +- lib/ipsec/sa.h | 2 +- lib/mbuf/rte_mbuf.h | 20 +++--- lib/mbuf/rte_mbuf_core.h | 5 +- lib/mempool/rte_mempool.h | 4 +- lib/pdump/rte_pdump.c | 14 ++-- lib/pdump/rte_pdump.h | 8 +-- lib/power/power_acpi_cpufreq.c | 33 ++++----- lib/power/power_cppc_cpufreq.c | 25 +++---- lib/power/power_pstate_cpufreq.c | 31 +++++---- lib/rcu/rte_rcu_qsbr.c | 48 ++++++------- lib/rcu/rte_rcu_qsbr.h | 68 +++++++++--------- lib/ring/rte_ring_c11_pvt.h | 33 ++++----- lib/ring/rte_ring_core.h | 10 +-- lib/ring/rte_ring_generic_pvt.h | 3 +- lib/ring/rte_ring_hts_elem_pvt.h | 22 +++--- lib/ring/rte_ring_peek_elem_pvt.h | 6 +- lib/ring/rte_ring_rts_elem_pvt.h | 27 ++++---- lib/stack/rte_stack.h | 2 +- lib/stack/rte_stack_lf_c11.h | 24 +++---- lib/stack/rte_stack_lf_generic.h | 18 ++--- lib/telemetry/telemetry.c | 18 ++--- lib/timer/rte_timer.c | 50 +++++++------- lib/timer/rte_timer.h | 6 +- lib/vhost/vdpa.c | 3 +- lib/vhost/vhost.c | 42 ++++++------ lib/vhost/vhost.h | 39 ++++++----- lib/vhost/vhost_user.c | 6 +- lib/vhost/virtio_net.c | 58 +++++++++------- lib/vhost/virtio_net_ctrl.c | 6 +- 65 files changed, 667 insertions(+), 639 deletions(-)