From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com
 [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 1FBEC7CCF
 for <dev@dpdk.org>; Thu,  4 May 2017 17:34:20 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id BBC0F207AA;
 Thu,  4 May 2017 11:34:19 -0400 (EDT)
Received: from frontend1 ([10.202.2.160])
 by compute1.internal (MEProxy); Thu, 04 May 2017 11:34:19 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 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:x-sasl-enc; s=mesmtp; bh=XjXY3KCINxxKrPo
 7W2gtIPukf8ySrsdINiDkYP5cm+0=; b=hci2CXY2WJIJYdYqZON1BHYENvJp/25
 nTldTCk+RQvXQaNfWO8xmsoBvoR4Dw0xEcJckahJX2kMWd5jkwJLNLQzejh5vOlz
 l43isE2jn/HOk/I2ptKH5tOpbdgKYpYFM0sNvlSPz8K41GOHDXKqejxwXrh9AI57
 QsajJPJKqZ14=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=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:x-sasl-enc; s=
 fm1; bh=XjXY3KCINxxKrPo7W2gtIPukf8ySrsdINiDkYP5cm+0=; b=QepiY6za
 r773XoAsttWpJU6vv6WURM7jj9XWxaeUP+mK1d1UBfC5RgWURCFz6qnqV+FXwtJ1
 2fcBjUqVvdnp9k4tGpQUQilgXuoELo4XpUkvcGrzipjp+0dSPmag7SSEtF5/BH+o
 GftbOhw2rP7GM3kyDpVZu3NHTdpfDJiKRHoIdKtuGqt0V46J6PihkwcmA5A8NKk5
 8PnB4hSQ8MClOCKETg2hUCCZn5uxGpW4rkXF83ldfNnLiwG3RGo78SNMqM/99aql
 N5WFnd2HaXHTkAvLMvt1LuUh/a21ysKBO8xhveNn3epU8wot5UG6F8g7dsmYKY5r
 e5QdFg2grZ0D7A==
X-ME-Sender: <xms:-0kLWbleiKoWq1INH9CArJmU2xxHpZbpu8cIfDI4l3LED7fTNKj87Q>
X-Sasl-enc: 2Ai5ABKyrpP9pUgjxu4WlkJp5BlPEeIjHufWuPzl/ySC 1493912059
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 7E5717E2B0
 for <dev@dpdk.org>; Thu,  4 May 2017 11:34:19 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: dev@dpdk.org
Date: Thu, 04 May 2017 17:34:18 +0200
Message-ID: <5499704.YdsLpkYSCk@xps>
In-Reply-To: <20170501230532.22780-1-thomas@monjalon.net>
References: <20170501230532.22780-1-thomas@monjalon.net>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH] eal: remove generic driver and device lists
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <http://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <http://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Thu, 04 May 2017 15:34:20 -0000

02/05/2017 01:05, Thomas Monjalon:
> These lists were unused and useless because they are maintained per bus:
> 	struct rte_driver_list dev_driver_list
> 	struct rte_device_list dev_device_list
> 
> Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
> ---
>  lib/librte_eal/bsdapp/eal/rte_eal_version.map   |  2 --
>  lib/librte_eal/common/eal_common_dev.c          | 34 ---------------------
>  lib/librte_eal/common/eal_common_vdev.c         | 11 -------
>  lib/librte_eal/common/include/rte_dev.h         | 39 -------------------------
>  lib/librte_eal/linuxapp/eal/rte_eal_version.map |  2 --
>  5 files changed, 88 deletions(-)

Applied