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 A9180A00BE; Tue, 29 Oct 2019 09:43:22 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 730EC1BED1; Tue, 29 Oct 2019 09:43:22 +0100 (CET) Received: from mail-il1-f194.google.com (mail-il1-f194.google.com [209.85.166.194]) by dpdk.org (Postfix) with ESMTP id 284B51BED0 for ; Tue, 29 Oct 2019 09:43:21 +0100 (CET) Received: by mail-il1-f194.google.com with SMTP id h5so7356345ilh.11 for ; Tue, 29 Oct 2019 01:43:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=KZygDoiq1T3LNQbIsPkJI0jwqo2KFV7vVJsx0OF9X+o=; b=cAH453vnkvJ94yymfllX5mNu8mkUNxLIObb7V85f9FwtD3zZJX03aoC32TQvlqauHr vokLXxkwJVBW7vasMv6qxHfdBK9aVfHSuAxCyXlmKQJWcQsN4zEhVQkCjDgCaRdriepc g6SiR88Q5/03s2NTvllsqP3b3KNQtnqx7xzLNnfDUZyHZy11uMVi5V8HvtAhrasr3/gl 8yKNHXJnIHxxPUCilc2OnMoIF5YBeboB0y9dTGxoYLSgcTxqLsHtagHpl/S/tl/Sxyy2 TGJps2kIW0KXTzHrRI/1uz9hufw4QwbtqFv03z71M6iOlWJAUo166un8Api9HJxZ+j94 1siw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=KZygDoiq1T3LNQbIsPkJI0jwqo2KFV7vVJsx0OF9X+o=; b=n2ETM5NRchmhrAz9gELUAnQcWQtQ+mIvN0XZ4qlYK910/337f0p40UeSoHSAZ3bXFV HNAGYHcdBr0P/oxixMHkmnqpfEh3nqQWeI6PYn2WJhqordGaltJfXQUfvlxNI1HVupQ6 Ey1OSRYNPo0rGlWczCME4Eci9n5HHHWMbGX6y+7qR2nd3E2JQH0IJxiUlNQV0Pv5bLfV jyEE6H49QrlrQi/3DA/kNAbVQnI4m4LTqSjfew27oLBlzXYv2WZKJ9AoJtVJu24gm7yN +r64gc5G6w2tqn3VRG+qJcrXNM4eQuVpwrq2QMwIxgZX00IIGSHaHG2xZejAzyhPtBnA ThBg== X-Gm-Message-State: APjAAAWhE5Gm5oZSR8ux4dPj6c+DaNlZG8NS6M4SrMCIsbok0ZEV3ztf 840467vZvg51e3ZlUh98V2csNmyZL2Mv65upoOE= X-Google-Smtp-Source: APXvYqxA8FVExht6prMdSJpc9/EtKI4YJ944qYaUD+gXoCGW8v6z92K6Mbmg5BkCTqoYeIKSY+e7HTHuOirQHV/usL0= X-Received: by 2002:a92:d78f:: with SMTP id d15mr24111407iln.294.1572338600329; Tue, 29 Oct 2019 01:43:20 -0700 (PDT) MIME-Version: 1.0 References: <20191028104934.21174-1-thomas@monjalon.net> <279bc10f-0de4-cb05-ae81-c56ddf072183@solarflare.com> In-Reply-To: <279bc10f-0de4-cb05-ae81-c56ddf072183@solarflare.com> From: Jerin Jacob Date: Tue, 29 Oct 2019 14:13:04 +0530 Message-ID: To: Andrew Rybchenko Cc: Thomas Monjalon , Neil Horman , John McNamara , Marko Kovacevic , Ferruh Yigit , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] ethdev: remove deprecated port count function 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" On Mon, Oct 28, 2019 at 5:09 PM Andrew Rybchenko wrote: > > On 10/28/19 1:49 PM, Thomas Monjalon wrote: > > The function rte_eth_dev_count() was marked as deprecated in DPDK 18.05 > > in commit d9a42a69febf ("ethdev: deprecate port count function"). > > It was planned to be removed after 19.11 LTS release, > > but given we must not break ABI between 19.11 and 20.11, > > it is removed now. > > > > Note the ABI version is not dumped in this commit > > because other changes already did. > > > > Signed-off-by: Thomas Monjalon Reviewed-by: Jerin Jacob