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 9E1CD4253E; Fri, 8 Sep 2023 06:02:54 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9298440285; Fri, 8 Sep 2023 06:02:54 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 8113A40042 for ; Fri, 8 Sep 2023 06:02:53 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id D82FB212B5D1; Thu, 7 Sep 2023 21:02:52 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com D82FB212B5D1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1694145772; bh=yvQFi0mJKRi2cFnibHWHzHWnWkpk4yIYeb+NlGveRLA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ooxcH4GEV2W1ZOLF9px/P05qIXLNKMt7KNrGrwqI3jzc6QwB0BV6EoFspxzID9c0H qYV/c/beSjZuZWTm3obsj5SaRfK4Noxl8SGX/5Gochbd80ofzWfzXm6cslt9Oevl9O HmzZlEKkNxXU9UM7fVFgDby15ybInTpwX8cq1uF0= Date: Thu, 7 Sep 2023 21:02:52 -0700 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, David Marchand , Ferruh Yigit , Chengwen Feng , Kevin Laatz , Bruce Richardson , Jingjing Wu , Beilei Xing , Qiming Yang , Qi Zhang , Wenjun Wu , Jiawen Wu , Jian Wang , Harman Kalra , Dmitry Kozlyuk , Narcisa Ana Maria Vasile , Dmitry Malloy , Pallavi Kadam Subject: Re: [PATCH 03/11] eal: remove attributes from control thread creation Message-ID: <20230908040252.GB7692@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230906162226.1618088-1-thomas@monjalon.net> <20230906162226.1618088-4-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230906162226.1618088-4-thomas@monjalon.net> 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 On Wed, Sep 06, 2023 at 06:12:20PM +0200, Thomas Monjalon wrote: > The experimental function rte_thread_create_control() > is supposed to wrap actions needed to create a control thread in DPDK. > This function should be easy to port on any OS. > > As such, the thread attributes should not be customizable in this API. > The thread priority should be normal, and the affinity is on "free cores". > That's why the custom attributes parameter thread_attr is dropped. > > Signed-off-by: Thomas Monjalon > --- Acked-by: Tyler Retzlaff