From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: remove rte_pci_dev_ids.h Date: Fri, 08 Jul 2016 16:31:01 +0200 Message-ID: <27706267.i1CLxpQ5Lb@xps13> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: ferruh.yigit@intel.com To: dev@dpdk.org, Stephen Hurd , Sony Chacko , Harish Patil , Rasesh Mody , Wenzhuo Lu , John Daley , Nelson Escobar , Jing Chen , Helin Zhang , Jingjing Wu , Huawei Xie , Yuanhan Liu , Yong Wang Return-path: Received: from mail-wm0-f48.google.com (mail-wm0-f48.google.com [74.125.82.48]) by dpdk.org (Postfix) with ESMTP id 3027F8D89 for ; Fri, 8 Jul 2016 16:31:03 +0200 (CEST) Received: by mail-wm0-f48.google.com with SMTP id k123so14126427wme.0 for ; Fri, 08 Jul 2016 07:31:03 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Some drivers define the supported PCI IDs, others define them in the common file rte_pci_dev_ids.h. This situation brings some confusion in the layering design. In order to clean up things, I've suggested a plan to remove rte_pci_dev_ids.h: http://dpdk.org/ml/archives/dev/2016-July/043596.html I bring it here in a new thread to give more visibility. There were 4 usages of this file: - PMDs - KNI ethtool (igb/ixgbe only) - testpmd to use ixgbe bypass - PCI autotest This is the plan to get rid of them: 1/ remove need in PCI autotest (done: http://dpdk.org/commit/1dbba165) 2/ move PCI ids in bnx2x, bnxt, e1000, enic, fm10k, i40e, virtio, vmxnet3 3/ remove KNI ethtool (only igb/ixgbe support) 4/ remove bypass API or move it to ixgbe specific API 5/ move remaining PCI ids in igb and ixgbe PMDs To make it short, please driver maintainers, move your PCI ids in your drivers as soon as possible, in order to achieve step 2. Thanks