From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 3FD2A42395; Tue, 10 Jan 2023 21:53:31 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D4A5A40E25; Tue, 10 Jan 2023 21:53:30 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 801794021E for ; Tue, 10 Jan 2023 21:53:29 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id CE03920B4621; Tue, 10 Jan 2023 12:53:28 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com CE03920B4621 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1673384008; bh=MFBv71JsO1UNtot64ensubP18TGRU9q4YrUBUUEaHSQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=MB+DKpCtx1kTq6iWa3j+3q3eb6ruml8CakQJ+pMS3dH4znEe1laulai6Jq6aqZkEp plJGvpWEVHd5438UgatjnlWkouCDETLTpRf1rrAh6GYFowytTTQ69C3z+2V68nmEnP 3UMySjl4u/HP5p4cgLnZTM02AB3gMMv4AH12cZ4I= Date: Tue, 10 Jan 2023 12:53:28 -0800 From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, david.marchand@redhat.com, olivier.matz@6wind.com, stephen@networkplumber.org, mb@smartsharesystems.com Subject: Re: [PATCH v2 0/4] add rte_thread_set_name API for rte_thread_t Message-ID: <20230110205328.GE21476@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1670439617-9054-1-git-send-email-roretzla@linux.microsoft.com> <1671036441-10234-1-git-send-email-roretzla@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1671036441-10234-1-git-send-email-roretzla@linux.microsoft.com> User-Agent: Mutt/1.5.21 (2010-09-15) 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 anymore feedback here folks? would like to clear this so i can rebase the rte_control_thread_create series. thanks! On Wed, Dec 14, 2022 at 08:47:17AM -0800, Tyler Retzlaff wrote: > Replace the rte_thread_setname API which operates on pthread_t with > rte_thread_set_name that operates on rte_thread_t. > > v2: > * initial series provided get/set for lcore thread id, those > additions have been removed as per discussion. including > unit test. > * add a single api rte_thread_set_name does not fail but emits > debug logging if the internal implementation is aware of > in-exact use of the name or failure to set the name. > * adapt mlx5 driver to avoid use of deprecated API. > > Tyler Retzlaff (4): > eal: add thread set name API operating on rte thread > eal: remove thread getname API > eal: deprecate rte thread setname API > drivers: mlx5 use rte thread set name > > doc/guides/rel_notes/deprecation.rst | 4 ++++ > drivers/net/mlx5/mlx5_hws_cnt.c | 4 +++- > drivers/vdpa/mlx5/mlx5_vdpa_event.c | 3 +-- > lib/eal/common/eal_common_thread.c | 9 +++---- > lib/eal/common/eal_common_trace.c | 2 -- > lib/eal/freebsd/eal.c | 4 +++- > lib/eal/freebsd/eal_thread.c | 20 +++++++++------- > lib/eal/include/rte_lcore.h | 19 ++------------- > lib/eal/include/rte_thread.h | 17 +++++++++++++ > lib/eal/linux/eal.c | 8 +++---- > lib/eal/linux/eal_thread.c | 29 ++++++++++++++--------- > lib/eal/version.map | 4 +++- > lib/eal/windows/rte_thread.c | 46 ++++++++++++++++++++++++++++++++++++ > 13 files changed, 114 insertions(+), 55 deletions(-) > > -- > 1.8.3.1