From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 0A68E1AEEB for ; Fri, 6 Oct 2017 01:09:49 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 8A49920ED1; Thu, 5 Oct 2017 19:09:49 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 05 Oct 2017 19:09:49 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc: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=k9oJk0qdz4ZqeCl CiEWZMAnAKNL8suJCsK6TZlLSWUY=; b=RNKFTl/iqlrtHTGxzbaUr9Y+PYU7bs3 EGcp3XdFkgbhZBCpZe5cH4Ub8Xv9yXX0bXHKZGUBiK7uUeniCKYDHuN8OSRP6pid mHoGiFF4aqiWc9ZOiRlxs4ay5tgSep7OwNWaLF9t7hoJbrOEIyVBL3RzuEgY9ia8 i0sK9LilZnWA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc: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=k9oJk0qdz4ZqeClCiEWZMAnAKNL8suJCsK6TZlLSWUY=; b=RG4pln2v wmbjSPqv2ogkO/lXgO52am3Dl8l1ivDmlwZM5an03JYS6Jur+PoQanO9xYGFUjXU mKX0O6JgiLdK0n+rfe3t2bxjkHsn4W8DCtoUn3VRorHLImuqS5A3UIeS6l/RXAPr B/Q7juko2LxZDlaUJXn1UxoX8Z+K2+rLMKEf7aAk/jpMnbHR/Wm0TDDVWQU3UcTj 4j1GyQwuZaHHCLst9iWiBG0ME7K9harhF5e4VSGLuijzs0743lv8BaSCvR52ndoR Qcz08NuvdB+/iG399KmFhcEbHpDZSV1cQ/qUrxAlTm18ukY93aI7O5SFmaO7y3QW XqO/Wx1HXPntLw== X-ME-Sender: X-Sasl-enc: I8vBCq7hYPA0EVUhPTeDxpJrhLKA+EQQlOPwm+5x62Ax 1507244989 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 3DCCB24009; Thu, 5 Oct 2017 19:09:49 -0400 (EDT) From: Thomas Monjalon To: Shreyansh Jain , hemant.agrawal@nxp.com Cc: dev@dpdk.org, Ferruh Yigit Date: Fri, 06 Oct 2017 01:09:48 +0200 Message-ID: <8620733.AHIAvCD8Yy@xps> In-Reply-To: References: <20170818125127.22346-1-shreyansh.jain@nxp.com> <20170825101954.28124-1-shreyansh.jain@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/6] NXP DPAA2: Refactor bus scan/probe code X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2017 23:09:50 -0000 11/09/2017 16:06, Ferruh Yigit: > On 8/25/2017 11:19 AM, Shreyansh Jain wrote: > > Change Log: > > ~~~~~~~~~~~ > > v2: > > - Minor updates for logging (removed some logs and changed others > > to make it cleaner when application starts) > > > > Brief: > > ~~~~~~ > > > > -- v1 is at [3] -- > > > > In [1], during the IOVA Mapping patch set [2] discussion, it was > > observed that DPAA2 scan was actually doing work meant for probing. > > > > This patchset demarcates the roles of FSLMC bus scan and probe > > functions much more clearly than before: > > > > 1. scan now only add devices into a list > > unlike previously, scan doesn't initialize the devices using the VFIO > > operations. Now, scan would only add the devices onto a local device > > list after marking their type and filling in device name. > > > > 2. probe would now perform VFIO operations > > in dpaa2, for the device added in list, an initialization needs > > to be done so as to enable the devices - before actually API calls > > can be served. Probe function now initializes the devices as well > > as links then to the Eth/Crypto drivers. > > > > 3. Refactoring some VFIO code > > This patch improves the overall code contained within DPAA2 bus > > for DPAA2 VFIO layer. > > > > [1] http://dpdk.org/ml/archives/dev/2017-July/071270.html > > [2] http://dpdk.org/ml/archives/dev/2017-July/070833.html > > [3] http://dpdk.org/ml/archives/dev/2017-August/073011.html > > > > Shreyansh Jain (6): > > bus/fslmc: support only single group and container > > bus/fslmc: introduce new device type enumerator > > crypto/dpaa2_sec: update driver type field > > net/dpaa2: update driver type field > > drivers: refactor DPAA2 object definition > > bus/fslmc: refactor scan and probe functions > > Series Reviewed-by: Ferruh Yigit > > I guess this set needs to go in to the main tree, because of both > - as far as I get IOVA patchset breaks dpaa2, so this should go in > before that patchset > - This patchset has both crypto and net patches, hard to get by sub-trees Applied, thanks