From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 84136FB26 for ; Thu, 19 Jan 2017 05:50:02 +0100 (CET) Received: by mail-wm0-f42.google.com with SMTP id r144so58689522wme.1 for ; Wed, 18 Jan 2017 20:50:02 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=9XuT7jU4123htOfAf2eCrfTLYywkNHRfMRDL1McpCgo=; b=n+79iZoDt4Qivuru+HAM+7nTsL0+mhPvN8gM13eid3wNMYvQ9bc8fbGNl/pK4pPOnj 5B2iKsbN8UQgblLkd46uxY7wLrKixJxP5IvrpTHddJSIiPCy0k5J1pRwQDEuTjedHgXD SktHfVzG2wAiIUdsjP+0q43xdQzJcPKa61CKwzqyblmMz+8QBmO39AmTlnrUhkRQEXAE NxFM6a1L8VNjUeUat/oX7DtyV1+44WaS5MTao0+EkEUDuIl2jD8EdpIKwfnd4mA2LLxv lWAqRyyK9M9ZLkoLiA9v4yoUps8xH/F7FDnkksg/71ffmtq1BlbrpRA6txm8lEsM1O0z CW1Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=9XuT7jU4123htOfAf2eCrfTLYywkNHRfMRDL1McpCgo=; b=a3hN6kw1sA+ImGJNcRSfNMAXCzkFS5HpqE3IEGAVuUXOI7GZ0dUUsm6/oVgchWlLyM X42ssO63COw2DtYryOQhwLurGuc6BeF8z53mfsZfTmS5LxvIJv7qg7GU8gxlA65bSh5H UKo714/Xq6jKx/I4ebHw6hqC+EE6kcJuMCz2l7V9ytvwm42WZH8iggdCFDFYdwGcrA7T sVf7FxfxZwkuIgMCTDW8H+CyT5GAv+iftImQVJMsl+ovx0BbLIQA4hKtH57IWn8gYllA NksRr32sskO03byes398pfZS8HyH7EPsVyLNc3siLOmPgdaWb9u7NPO1xOH4Hci1laOA wzvw== X-Gm-Message-State: AIkVDXLB+stX2tx8EW7hPxGMjMd7aPvOJ1FdEw31c8pJ1qLYK5xYIe//qbzn8oZEFNut+X3U X-Received: by 10.223.128.77 with SMTP id 71mr5540306wrk.48.1484801402288; Wed, 18 Jan 2017 20:50:02 -0800 (PST) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id f126sm50173877wme.22.2017.01.18.20.50.01 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 18 Jan 2017 20:50:01 -0800 (PST) Date: Wed, 18 Jan 2017 20:50:01 -0800 (PST) X-Google-Original-Date: Thu, 19 Jan 2017 05:50 +0100 From: Thomas Monjalon To: Shreyansh Jain Cc: dev@dpdk.org Message-ID: <13629468.ogX8pDT4pK@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1484801117-779-1-git-send-email-thomas.monjalon@6wind.com> References: <1484748329-5418-1-git-send-email-shreyansh.jain@nxp.com> <1484801117-779-1-git-send-email-thomas.monjalon@6wind.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v11 00/13] rte_bus + rte_pci_bus 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, 19 Jan 2017 04:50:02 -0000 2017-01-19 05:45, Thomas Monjalon: > Unfortunately, it is not ready to be integrated in 17.02. > More specifically: > - the tests need some review/rework > - the PCI implementation requires more work > - the documentation must be updated > > However there are some new buses waiting for the bus abstraction, > which is simple and good enough. > That's why I have isolated the generic bus model in first patches > and will apply them in 17.02-rc1. It will allow to base new buses > on top of rte_bus. > > > Shreyansh Jain (13): > bus: introduce bus abstraction > bus: add scanning > bus: add probing First 3 patches applied. I'll continue to work with Shreyansh on PCI implementation. Some help is required to convert VDEV into a bus driver. > app/test: check bus registration > app/test: check bus scan > app/test: check bus probe > pci: split match and probe > pci: remove loop over drivers in device detach > pci: add bus driver > app/test: add PCI bus driver > pci: use bus driver for scan/probe > pci: use bus driver for attach/detach > doc: remove deprecation notice for rte_bus