From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id D2BA9A0487 for ; Mon, 1 Jul 2019 18:37:31 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1B0B25F11; Mon, 1 Jul 2019 18:37:31 +0200 (CEST) Received: from wout4-smtp.messagingengine.com (wout4-smtp.messagingengine.com [64.147.123.20]) by dpdk.org (Postfix) with ESMTP id 403DCA3 for ; Mon, 1 Jul 2019 18:37:29 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id ED02D3B2; Mon, 1 Jul 2019 12:37:27 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 01 Jul 2019 12:37:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=nFX4QaYMJ2agGWDZulvU5kU1WxcQNHdKAIuQPwer8hk=; b=dOPsnrqu5pXt tGqiN4orh/dkZ6feKLdE+YGxvGCfjUVI9vvttdVvt4kyZuEcl97CU0mCmIKz5B5t E4wByGA0Xb/nBrM+GOT/t/VoGPiJxj5mJbAZymJERibCbtYj7hA7+GXTh7AIEJqh e8b4pfMlUIAYuRiGOT+MMlQYvpg3z+Q= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=nFX4QaYMJ2agGWDZulvU5kU1WxcQNHdKAIuQPwer8 hk=; b=BCr1pqsxn2gk13Cc+IsBKKGRtZzeVzNPv35dWZTahH4V8JfY9fFuzHP56 OseNa219TfmzIkXOdbD7Xvusnsam24HJVMxECkOpQzKDMp/SFK5NeEwz9EAi3mnF lorHB80HgunOllMfqnfoxlKUXbC06YB9+tOk8al0M9VaSqFgUd4RrDIZW19PjdwA H3tSux/fU7BLYjs76p11GFi2avI5IQFjH4wHFgL2I7TU7yzvE8GfSCXhVciCWRNM FhG2ci4pbU5Fxb+8Z6eST5oBpjVI5+TDyB/GgMtft1TxFIj0p7O2NljK/ACbwg4s dPL3gfuH6Bjf0BbzPu7WbsbfLzwtw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrvdeigddutdefucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukf hppeejjedrudefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhh ohhmrghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A8C3980068; Mon, 1 Jul 2019 12:37:26 -0400 (EDT) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org, anatoly.burakov@intel.com Date: Mon, 01 Jul 2019 18:37:25 +0200 Message-ID: <3702893.a3v22AlgRE@xps> In-Reply-To: <20190626223212.25815-1-stephen@networkplumber.org> References: <20190626223212.25815-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] malloc: deprecate unused set limit 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 27/06/2019 00:32, Stephen Hemminger: > The function rte_malloc_set_limit was defined but never implemented. > Mark it as deprecated for now, and remove in next release. > > There is no point in keeping dead code. > "You Aren't Going to Need It" > > Signed-off-by: Stephen Hemminger > --- > -int > +int __rte_deprecated > rte_malloc_set_limit(const char *type, size_t max); Tag moved in a separate line before the return type. Applied, thanks