From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 50A341396 for ; Fri, 15 Sep 2017 15:52:56 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id DE19720EC0; Fri, 15 Sep 2017 09:52:55 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Fri, 15 Sep 2017 09:52:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=gNj1Iizu+vX8UQX 8rRwUsya9s4FY67pIWNQpYcBtrCk=; b=Z0iT50hsJqkE83hEFgSLfBwiW4r5p/x T7r4aQOUGDrUyQultQIrwsS+PYBKQIiv2lnQLNXShkAthcjnIDira9FDOMAKUuwp s6EJqZQJv+VHH18Z7QYsoxSQAwBDRX0/6u/jWug14jIGwUQd1LfsuXcZAmnchdIo TWkLCZS4yH3o= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=gNj1Iizu+vX8UQX8rRwUsya9s4FY67pIWNQpYcBtrCk=; b=JKgH0m6O nykWFXW2pz9xHpTJKaGB+3CJVO6/lehSPyqLOS3cfMyDI9pPg+asYOdJY00klMdM UR3TqZMZ6oqZVdn4fLunPUprekUZWtEphZcF7alMpUFrDxRwu+fFB/h2VEyxtqVs phjdu30/5IJo5sC0KGxWwo2OJyBgF9+9Z6peYeWyvokBIaGcldFcyan0JD3hR/ie TWacuqsdUKu/Tzbpr4o54TjDBDZLIAqnEn4IdNaXnMoGncS5hzw0esekLBjV/EDh r7poKoXvjPqhv2rwEdxS+VmeNHHDWCY2/m0gzCNh/6PQntMJWiaEMULilRyzYiLR b4UJwgSseX8dvg== X-ME-Sender: X-Sasl-enc: NF0qcw2Pgeg3TWlwvqE4ruj0pZaf32pAEgF04d+umVt3 1505483575 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 70C307FA80; Fri, 15 Sep 2017 09:52:55 -0400 (EDT) From: Thomas Monjalon To: Pavan Nikhilesh Bhagavatula , "Van Haaren, Harry" Cc: dev@dpdk.org Date: Fri, 15 Sep 2017 15:52:54 +0200 Message-ID: <7169652.mOItyNrJXL@xps> In-Reply-To: <20170828150946.GA18980@PBHAGAVATULA-LT> References: <1503501027-11046-1-git-send-email-pbhagavatula@caviumnetworks.com> <20170828150946.GA18980@PBHAGAVATULA-LT> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] eal: added new `rte_lcore_is_service_lcore` API. 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: Fri, 15 Sep 2017 13:52:56 -0000 28/08/2017 17:09, Pavan Nikhilesh Bhagavatula: > On Mon, Aug 28, 2017 at 01:49:37PM +0000, Van Haaren, Harry wrote: > > From: Pavan Nikhilesh Bhagavatula [mailto:pbhagavatula@caviumnetworks.com] > > > On Mon, Aug 28, 2017 at 10:59:51AM +0000, Van Haaren, Harry wrote: > > > > From: Pavan Nikhilesh [mailto:pbhagavatula@caviumnetworks.com] > > > > > --- a/lib/librte_eal/common/include/rte_lcore.h > > > > > +++ b/lib/librte_eal/common/include/rte_lcore.h > > > > > @@ -180,6 +180,24 @@ rte_lcore_is_enabled(unsigned lcore_id) > > > > > } > > > > > > > > > > /** > > > > > + * Test if an lcore is service lcore. > > > > > + * > > > > > + * @param lcore_id > > > > > + * The identifier of the lcore, which MUST be between 0 and > > > > > + * RTE_MAX_LCORE-1. > > > > > + * @return > > > > > + * True if the given lcore is service; false otherwise. > > > > > + */ > > > > > +static inline int > > > > > +rte_lcore_is_service_lcore(unsigned lcore_id) > > > > > +{ > > > > > + struct rte_config *cfg = rte_eal_get_configuration(); > > > > > + if (lcore_id >= RTE_MAX_LCORE) > > > > > + return 0; > > > > > + return cfg->lcore_role[lcore_id] == ROLE_SERVICE; > > > > > +} > > > > > > > > No header file and Static inline - so this is only to be used internally in the service > > > cores library? > > > > If so, the function should actually be used, instead of only added but not used in the > > > library itself. > > > > > > > > > > The enum rte_lcore_role_t has ROLE_SERVICE which tells that a particular lcore is > > > a service lcore as well as an EAL thread some libraries such as rte_timer allow > > > specific operations only over EAL threads. > > > > Understood that role of cores is important, and that rte_timer might require this information. > > > > > > > The rte_timer lib uses the rte_is_lcore_enabled() call to check if a lcore is an > > > EAL thread, Which checks if the lcore role is ROLE_RTE. But it should also > > > allow timers to be registered on a service core as processing those timers can > > > be done on them. > > > > No problem from me here either - although it's the Timers library maintainer that should check this. > > > > > > > This new function allows such libraries to check if the role is > > > ROLE_SERVICE and allow those operations. > > > > If the timers library requires information about service-cores, it should use a public API to retrieve that information. Having "internal" functions between libraries is not nice. > > > > I think a better design would be to add this function as a public function, (add it to the .map files etc) and then call the public function from the timers library. > > > > Does that sound like a good solution? -Harry > > > > The file rte_lcore.h is in librte_eal/common/include I couldn't find a .map > file for eal/common and also other functions that are present in rte_lcore.h > aren't mapped in eal/linuxapp or eal/bsdapp. > I think it is fine as the functions are static inline. We must avoid adding more inline functions without a good justification. The inline functions are tolerated for performance reasons only. We could also choose to add this function to rte_service.h ?