From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout5-smtp.messagingengine.com (wout5-smtp.messagingengine.com [64.147.123.21]) by dpdk.org (Postfix) with ESMTP id 97EAA2F42 for ; Fri, 13 Jul 2018 11:42:40 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 7031225A; Fri, 13 Jul 2018 05:42:39 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 13 Jul 2018 05:42:39 -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=4xWVxV+TqHmnY/+xa7DGtGXaJP B/9ViTXAkGTw6HM6w=; b=OsiRrz2NMWgkAahhUUl1dZ9GAs6x4W9Jr4Vc7qUHaK koYM2ApgrY8UEub0yMyjWNdC57shpmC9MgMACFukmYrIsPtWhmvTLDKeKFxizinG SO/WK2YyCrOyqUVtAz/F2mRdrx+Wg1zVqdo9FWWuVI35NNHrx2iAD3AirkrleygK s= 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=4xWVxV +TqHmnY/+xa7DGtGXaJPB/9ViTXAkGTw6HM6w=; b=bLtU4WBJGJXLRl08/St7q6 hrVie3qUbsUNPma32O0RyWfwfX2cQZd2YXXKM3024IGKlX4A2hwFiOXswoGsl/cC 8J6FcoKlecVvhuY3vn1WTOyI7/9zmht8y+GcXs1uBuOb4roYt7Wy7U7rkQzJvdNv bxsW7zj3Y6lSy4BwfCBCargnF09W1VSQJcVwx7p4Pi0opJGQ5VL2if1ZE2cBYZwE IqngNp+V8sQB9aJXepItUi3UFwVMv04jA3ghauR+ITNedremul4Kx2R9AqZAcG04 xYfcgS83/AJQKy3JpGREPE3NURNUMCyEcDYn73JP3LOiwApC1AzQv1D09ci5ZbOw == 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 211911026A; Fri, 13 Jul 2018 05:42:36 -0400 (EDT) From: Thomas Monjalon To: Anatoly Burakov Cc: dev@dpdk.org, Neil Horman , John McNamara , Marko Kovacevic , bruce.richardson@intel.com, harry.van.haaren@intel.com Date: Fri, 13 Jul 2018 11:42:34 +0200 Message-ID: <23561929.zuCDBiNphU@xps> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] eal: move runtime config file to new location 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 Jul 2018 09:42:40 -0000 31/05/2018 17:35, Anatoly Burakov: > As per deprecation notice [1], move DPDK runtime config to default > DPDK runtime data location. Also, remove the deprecation notice. > > [1] http://dpdk.org/dev/patchwork/patch/40418/ > > Signed-off-by: Anatoly Burakov > --- > doc/guides/rel_notes/deprecation.rst | 10 ---------- > lib/librte_eal/common/eal_filesystem.h | 10 +++------- > 2 files changed, 3 insertions(+), 17 deletions(-) You should update the release notes too. Let's consider this location as an API, you could add a note in "API Changes". Thanks