From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4C6FCA0C43; Mon, 6 Sep 2021 16:19:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D86BB410ED; Mon, 6 Sep 2021 16:19:14 +0200 (CEST) Received: from shelob.oktetlabs.ru (shelob.oktetlabs.ru [91.220.146.113]) by mails.dpdk.org (Postfix) with ESMTP id 8E229410E9 for ; Mon, 6 Sep 2021 16:19:13 +0200 (CEST) Received: from [192.168.38.17] (aros.oktetlabs.ru [192.168.38.17]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shelob.oktetlabs.ru (Postfix) with ESMTPSA id 015ED7F523; Mon, 6 Sep 2021 17:19:12 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 shelob.oktetlabs.ru 015ED7F523 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=oktetlabs.ru; s=default; t=1630937953; bh=VdGWTieUNWPR5iGdVA8ZrHsJZiHGCTapQ4QQRYpOJks=; h=Subject:To:Cc:References:From:Date:In-Reply-To; b=rMRa7w9AdrCNM5lNUaBosvr49jW59WsnWKUlobBM69aL+sw1vS7MUiPWKoZlqX3AP eTFIyIcdpbLTsV6ZvNP+NZ8/+TA6dTjRB65JLtcOJHZDiIzDYB7hyXBagRnS+4Wg4G krI3+ceP8j97vJE8jHfSquuXsFPcVn2o2xubffe0= To: David Marchand , dev@dpdk.org Cc: Thomas Monjalon , Ferruh Yigit , Ray Kinsella References: <20210906130220.6756-1-david.marchand@redhat.com> From: Andrew Rybchenko Organization: OKTET Labs Message-ID: <67cc6daf-11de-f6f6-4480-aa749209693c@oktetlabs.ru> Date: Mon, 6 Sep 2021 17:19:12 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0 MIME-Version: 1.0 In-Reply-To: <20210906130220.6756-1-david.marchand@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] ethdev: promote sibling iterators to stable X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 9/6/21 4:02 PM, David Marchand wrote: > This API saw no update since its introduction and will help applications > like OVS ([1] and [2]) that currently look at rte_eth_devices[] to > achieve the same. > > 1: https://github.com/openvswitch/ovs/blob/master/lib/netdev-dpdk.c#L1285 > 2: https://github.com/openvswitch/ovs/blob/master/lib/netdev-dpdk.c#L1476 > > Signed-off-by: David Marchand Acked-by: Andrew Rybchenko