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 2A5E61B3AE for ; Sat, 14 Oct 2017 00:24:08 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id B936720822; Fri, 13 Oct 2017 18:24:07 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Fri, 13 Oct 2017 18:24:07 -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=HYAlE9TTe4Lav7qpSCJDEdRt+E RColWBZvDAz6Fddrk=; b=DE+vRFPS/eutquav82Q20LEyP5n3BrgvR9J7nWCcYh cPyUipOgdK1ikod/Bqk7RES3KR82g8sKE7ZicBZPVVBHYfsSl5XaRXBbG5gmK9JZ qYg+dcsA6x2K9QCD9LaaT+KLnaCzTP8kiL40Htmc/hNDx1MF5Ovc1jJb4bfkFwgY 4= 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=fm1; bh=HYAlE9 TTe4Lav7qpSCJDEdRt+ERColWBZvDAz6Fddrk=; b=pe2ZrNlGAgeHHsg+LylD79 YJB1gcR3X0TXK6zhuYBFg99f+7QhSOGMjqEUIC8Ap0hc+Btsz7WZXvOAvkg90fZE MDxg3OtBkAC9Yz22DwoSV/h4+b3WyXndyvO1umublULXDm1V2B7OLNc/nLxcsEEP zu5kbjHCT2EwbcZC0YHxx/1oa7KaF1Wd5X9nBObpX9OqKTPQW9QnYCCXwwQmIm+9 rh9ZciJDJQ53vMPmB3kn3wxFFZJ6NEHqyFBcRduPoGhSsq7KINdbgpt1iXosxm0u sVfyow3i7sAYtCxIB5ndeYDuabCdBSwugQ80qehn0iIxu8vVwZpQgDaTAyEFlVKQ == 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 66B702473E; Fri, 13 Oct 2017 18:24:07 -0400 (EDT) From: Thomas Monjalon To: Harry van Haaren Cc: dev@dpdk.org, john.mcnamara@intel.com Date: Sat, 14 Oct 2017 00:24:06 +0200 Message-ID: <1530437.fLlCXGkgIR@xps> In-Reply-To: <52003430.xnAzt5Wvs3@xps> References: <1506345834-137009-1-git-send-email-harry.van.haaren@intel.com> <52003430.xnAzt5Wvs3@xps> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] example: add new service cores sample application 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, 13 Oct 2017 22:24:08 -0000 14/10/2017 00:20, Thomas Monjalon: > 25/09/2017 15:23, Harry van Haaren: > > This commit adds a new sample app, which showcases the value > > of running services. In particular it allows the application > > to dynamically schedule services to service-cores. > > > > The sample app itself registers a number of dummy services, > > and applies different profiles to them at runtime. Note that > > this sample application does not forward any traffic - it > > demonstrates advanced usage of the service cores API. > > > > Signed-off-by: Harry van Haaren > > --- > > examples/service_cores/Makefile | 54 +++++++++ > > examples/service_cores/main.c | 245 ++++++++++++++++++++++++++++++++++++++++ > > 2 files changed, 299 insertions(+) > > Please add this example in the global examples Makefile. And you need to add it also in MAINTAINERS. I guess an entry in the doc is maybe required, too?