From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 485EF2C16 for ; Tue, 19 Jun 2018 00:13:59 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 869CF21FD8; Mon, 18 Jun 2018 18:13:58 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Mon, 18 Jun 2018 18:13:58 -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; s=mesmtp; bh=oRGzfneXYGf/8wGSshlvdgdgmp nuQlA0yzJ72XcnXBk=; b=i/eV7BEuz6qdotgkSTFwtSVifCA9ldmYcmZGlvfkpm TC6HyQlWx8s+es/UulgqiXj+buN/pH39dh7D2MRiTExv1ImlRSdrSIJckEwBfjHk WI4NYZSl+2g4V0vi+AYV+a69llqJjO+d6hA6mMrxIzkmJ80ne1WxY1eZMuUdW7bE E= 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; s=fm3; bh=oRGzfn eXYGf/8wGSshlvdgdgmpnuQlA0yzJ72XcnXBk=; b=JrCB5GnFm/j5b0DSdLaiE4 4avdBP5f11F3RPbhmVrIERN8muWcskiZjxhYh1RYN9iUtSy9WCnK/n9VLXJJlNF4 S6oIZ5ZbjIY7/Ykx15FB0pcx0b96Z+S7PrelAs5LpFK5lGJ9YdasTQuMDywhIJWN TQEFnu7+Q6pzr5ckI1jhjIa99Eky2FDaFRI894YtZoCRn8q4pvdnAICNT+1wReCf DVxdy+jhpkv1OymPWhEZTkwV+T1gBROoq5qB5ANFrcO32r5gF5wKUiYpAGcm0uAG FEfjzc5JWFrei7Lalq2gop24SsZ3KYZJG2Xs7la14+ebFiMKYQt1N6mrsdbrZJww == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 60FC710260; Mon, 18 Jun 2018 18:13:57 -0400 (EDT) From: Thomas Monjalon To: Gage Eads Cc: dev@dpdk.org, jerin.jacob@caviumnetworks.com, harry.van.haaren@intel.com, bruce.richardson@intel.com, nikhil.rao@intel.com, erik.g.carrillo@intel.com, abhinandan.gujjar@intel.com Date: Tue, 19 Jun 2018 00:13:56 +0200 Message-ID: <3685961.S7279KZuIK@xps> In-Reply-To: <20180614135130.30849-2-gage.eads@intel.com> References: <20180531135557.7544-1-gage.eads@intel.com> <20180614135130.30849-1-gage.eads@intel.com> <20180614135130.30849-2-gage.eads@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 1/2] service: add mechanism for quiescing a service 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: Mon, 18 Jun 2018 22:13:59 -0000 14/06/2018 15:51, Gage Eads: > --- a/lib/librte_eal/common/include/rte_service.h > +++ b/lib/librte_eal/common/include/rte_service.h > @@ -162,6 +162,22 @@ int32_t rte_service_runstate_set(uint32_t id, uint32_t runstate); > int32_t rte_service_runstate_get(uint32_t id); > > /** > + * This function returns whether the service may be currently executing on > + * at least one lcore, or definitely is not. This function can be used to > + * determine if, after setting the service runstate to stopped, the service > + * is still executing an a service lcore. Typo: "an a" > --- a/lib/librte_eal/rte_eal_version.map > +++ b/lib/librte_eal/rte_eal_version.map > +DPDK_18.08 { > + global: > + > + rte_service_may_be_active; > + > +} DPDK_18.05; Why it is not experimental?