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 8048B1B2A0 for ; Sat, 14 Oct 2017 00:20:58 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 36BBD20C28; Fri, 13 Oct 2017 18:20:58 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Fri, 13 Oct 2017 18:20: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=dfrcpiQmaK0Nef4eu/00X8yhy6 5iFi7Lo4rTenPo3pc=; b=MTQx3JoLbbPopgH9cikevjsJz1TEcp9AYNi9PuSp2T xrpPks4YU5le8GCUN8KGIt012ZHb7UC54bxqxGUTe7K9Fmn/vTGXGJx+yXDs+CXY HauZg857dr+Y8mIoQv6JUyUeoxUi3TrDWP7VlBoo3TI2Yon3ddjLGWskpsOhS1Rx A= 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=dfrcpi QmaK0Nef4eu/00X8yhy65iFi7Lo4rTenPo3pc=; b=qVyPEiMq2CZ+ujSsRWGb58 RwFb+AOZeY8w694xjDzMcXGLvFPaxYPMr+6WEDC/e37xiiJ+gbbTISDUKCgAF25d LMcoLENpXroqhsQBD0E9I7WQvDq7N9kKYnmNNJbrjCSdI0wcJCIzzTomNwKBs2ka SRTwJQnThaa1YpUbMTCRIP9E//+6N2Cv+s6rVwkeYX6kgAkbZUludb0TSZ6V6BC5 1zvuwWDL24cfGrWem9+s/88xto/OSnClIxr1SJ/0BhFSWjnlpRUg6OQ4L4J/lZfX LIt9Y/ZOYYehwlI0cGM61hECCY4s3M8eFNt7iURL2x3OU11CZHqAqGbHY4K10xLA == 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 E2B527F3AB; Fri, 13 Oct 2017 18:20:57 -0400 (EDT) From: Thomas Monjalon To: Harry van Haaren Cc: dev@dpdk.org Date: Sat, 14 Oct 2017 00:20:56 +0200 Message-ID: <52003430.xnAzt5Wvs3@xps> In-Reply-To: <1506345834-137009-1-git-send-email-harry.van.haaren@intel.com> References: <1506345834-137009-1-git-send-email-harry.van.haaren@intel.com> 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:20:58 -0000 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.