From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f52.google.com (mail-wm0-f52.google.com [74.125.82.52]) by dpdk.org (Postfix) with ESMTP id 873232E8A for ; Mon, 30 Jan 2017 17:25:54 +0100 (CET) Received: by mail-wm0-f52.google.com with SMTP id c85so221404928wmi.1 for ; Mon, 30 Jan 2017 08:25:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=/jKUgbkS91mzFKyYyFv4BU96lcWWVBoDr5JQN3XRqK0=; b=jbVdDrTgmAx0DpiQLX96J3wrPPzoQI6RqENVoiw32Jhiu9m2qy6oHLxvF1k8lT3vAm 0cQHAwMOA957KJ70slUImD7HFRp145FLFKvqH8Dt4rPnDnQQ4xMC9ZMa/YS8CxAGgwmM HjH2cy7UDBAmDXSJjt84NvH3iJLgySZsqlwoJJVSmkm86ibkx3gSGU4Uc8mlQ6Fy9gIn wgienDN9P0cA4Ioas6zL+jAGUxOMUR264vR2xlximUzXyWriuP17p3NuAzMiUJHjyOHu 3KR0SztR4rrMKRR0gzqvT89GcX0CbcnBvR+yDJzLO8dqAvsMyZqY3rkQHX0KFo/mXwWP DD0w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=/jKUgbkS91mzFKyYyFv4BU96lcWWVBoDr5JQN3XRqK0=; b=QAfRmvzhRKWf8t8zseGBH0EQaeHWFeje0RI+7Hcr6/Un+dH7w8x6Zi0hlpZtaYEpGQ tkR+GIGsa0w7IetBGI0uGXYL4nHngjMo+kz7HP3DxOLFp1CvuELDEw/HRn7mi4cL81Hr ayb62JSTpzIbNByn8Slow66vIws3w+h43LYe1ob73hjsaFjpLkCR3tYqCeXicpdbtr9U ir99g9eeagHnYkBoSTjo0eAj3f7cw9vzs0mwUeqrvUNyWCLts78LZCUvhyD7uaemh2ed zRI/Kq/nW+JmSPwHyPS1US4eOBX77gOIENoJJ/sNWzP/93gs9BbH/fohg+ZFaOO6FR+j UD0A== X-Gm-Message-State: AIkVDXK5jnCwees4h7NPyDJGfrxX3DDiMg+7TI/w/cTJ4culfZd2aSgDCZ8O7HinxS1PtWo4 X-Received: by 10.28.111.220 with SMTP id c89mr14024136wmi.102.1485793554069; Mon, 30 Jan 2017 08:25:54 -0800 (PST) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id o143sm19577415wmd.3.2017.01.30.08.25.52 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 30 Jan 2017 08:25:53 -0800 (PST) From: Thomas Monjalon To: Pablo de Lara Cc: dev@dpdk.org Date: Mon, 30 Jan 2017 17:25:52 +0100 Message-ID: <1683744.udnxFVMyFf@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1485248774-91712-1-git-send-email-pablo.de.lara.guarch@intel.com> References: <1485248774-91712-1-git-send-email-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] examples/flow-distributor: rename to server_node_efd 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, 30 Jan 2017 16:25:54 -0000 2017-01-24 09:06, Pablo de Lara: > To avoid confusion with distributor app, this commit > renames the flow-distributor sample app to server_node_efd, > since it shows how to use the EFD library and it is based > on a server/nodes model. > > Signed-off-by: Pablo de Lara Are you sure of the name? :) Applied with a fix: --- a/examples/Makefile +++ b/examples/Makefile -DIRS-$(CONFIG_RTE_LIBRTE_EFD) += flow_distributor +DIRS-$(CONFIG_RTE_LIBRTE_EFD) += server_node_efd