From mboxrd@z Thu Jan 1 00:00:00 1970 From: Shreyansh Jain Subject: Re: [PATCH v9 08/25] drivers: convert all pdev drivers as pci drivers Date: Fri, 16 Sep 2016 10:19:20 +0530 Message-ID: <9fdbceef-7982-a91d-4c49-ac7e1d586b7c@nxp.com> References: <1466510566-9240-1-git-send-email-shreyansh.jain@nxp.com> <1473257297-7221-1-git-send-email-shreyansh.jain@nxp.com> <1473257297-7221-9-git-send-email-shreyansh.jain@nxp.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Cc: "dev@dpdk.org" , To: David Marchand Return-path: Received: from NAM02-CY1-obe.outbound.protection.outlook.com (mail-cys01nam02on0052.outbound.protection.outlook.com [104.47.37.52]) by dpdk.org (Postfix) with ESMTP id 5745668CA for ; Fri, 16 Sep 2016 06:48:57 +0200 (CEST) In-Reply-To: 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" Hi David, On Monday 12 September 2016 12:46 PM, David Marchand wrote: > On Wed, Sep 7, 2016 at 4:08 PM, Shreyansh Jain wrote: >> Simplify crypto and ethdev pci drivers init by using newly introduced >> init macros and helpers. >> Those drivers then don't need to register as "rte_driver"s anymore. >> >> Exceptions: >> - virtio and mlx* use RTE_INIT directly as they have custom initialization >> steps. > > Afaics, we are missing some DRIVER_EXPORT_NAME for those. I have updated this in v10 based on the patches you sent me. > >> - VDEV devices are not modified - they continue to use PMD_REGISTER_DRIVER. >> >> Signed-off-by: David Marchand >> Signed-off-by: Shreyansh Jain > > - Shreyansh