From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v3 01/13] e1000: move pci device ids to driver Date: Fri, 08 Jul 2016 15:31:27 +0200 Message-ID: <2858831.tSF8KXeB50@xps13> References: <1453120248-28274-1-git-send-email-david.marchand@6wind.com> <1461156236-25349-1-git-send-email-david.marchand@6wind.com> <1461156236-25349-2-git-send-email-david.marchand@6wind.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: David Marchand , stephen@networkplumber.org, bruce.richardson@intel.com, nhorman@tuxdriver.com, pmatilai@redhat.com, christian.ehrhardt@canonical.com, Wenzhuo Lu , bruce.richardson@intel.com, ferruh.yigit@intel.com, Rasesh Mody , johndale@cisco.om, Yuanhan Liu , Yong Wang To: dev@dpdk.org Return-path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 56B376C9F for ; Fri, 8 Jul 2016 15:31:29 +0200 (CEST) Received: by mail-wm0-f50.google.com with SMTP id z126so13346578wme.0 for ; Fri, 08 Jul 2016 06:31:29 -0700 (PDT) In-Reply-To: <1461156236-25349-2-git-send-email-david.marchand@6wind.com> 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" 2016-04-20 14:43, David Marchand: > test application and kni still want to know e1000 pci devices. > So let's create headers in the driver that will be used by them. There is also an usage of ixgbe ID for the broken bypass API. Sharing those PCI ids outside of the drivers was really a wrong idea. So this a 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 drivers Please driver maintainers, move your PCI ids in your drivers as soon as possible. Thanks