From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f194.google.com (mail-wr0-f194.google.com [209.85.128.194]) by dpdk.org (Postfix) with ESMTP id 543F2A2F for ; Mon, 13 Feb 2017 22:53:08 +0100 (CET) Received: by mail-wr0-f194.google.com with SMTP id c4so307752wrd.1 for ; Mon, 13 Feb 2017 13:53:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=qI2QfXVCiUeSVbMtwusvsJPyYPeyV9LA9faoH0i/nL0=; b=BgUKPPBbT0s8uBG+T8FSSHt++7i2SMmH0mL5hU5VNwVEdsU1hJ5jXhLP6cFukkWsKv KDz0sXIdabMW1S6P7OA2ak/aIrKdLQfDJwbvW4I2Hagg43CC+q4NEOugMFJ2Vm3n7obl R7Jcs0PYTiJf6fVbJBhK96qznHl2W8cqXztLXnNVJXzxttKTGpb3Y19ocyjD6XPc7bgS HQkEDF+Z2BpG3fDQDZlcPz5njAt4jVVypKehbRO3ct+AMH9naKtmZNFOMFbYvtP3+nyh vipd0Up9/+Lq+qvqjRiosA1VVACWaZd3Cuvd1sIVpkSwHUH7PuwWQn+Cc4ZQEAeuiMls xZ0w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=qI2QfXVCiUeSVbMtwusvsJPyYPeyV9LA9faoH0i/nL0=; b=TC8RAPAMU46qB+VIn99Dlx0PNtuOBU320CVeZNhoxD16n3i+HzQTQ1mDLthn8FqoA3 X0BisIG+eTncwJW/8v4KKcL9nD/+uI1Huw37GYrTbWynWFAJwhReWLitgZAjjuO26gkA WQCFP4QRuL003N/N1lQnCv2Bcr82IMNKGEoq+yS+vccCJFmT9AOPQEW8/6lq6QHednnM KH7KoVm+7DlreSvQRe8b5PcsyxOIpepyWB3+aZs0rikrkThlUcS5jaXKTnXH26tY2hJx AWsqp57jJ6B5HoY6IniRL6qREWjue92adAPQz/B3+xbd8FfcmfKRX/gYNSjhsDueaclA c60Q== X-Gm-Message-State: AMke39lMGH5rxQjtOzKo7/zV2ePvtpSv8H6vGRLRowC272IZsD9LQ4XJW7QNKY27cMVU2ebThK/bijklMjA7vA== X-Received: by 10.223.132.166 with SMTP id 35mr20896062wrg.122.1487022788067; Mon, 13 Feb 2017 13:53:08 -0800 (PST) MIME-Version: 1.0 Sender: jblunck@gmail.com Received: by 10.28.211.20 with HTTP; Mon, 13 Feb 2017 13:53:07 -0800 (PST) In-Reply-To: <1487002834-27996-1-git-send-email-thomas.monjalon@6wind.com> References: <2321224.ZvC7RxeBXe@xps13> <1487002834-27996-1-git-send-email-thomas.monjalon@6wind.com> From: Jan Blunck Date: Mon, 13 Feb 2017 22:53:07 +0100 X-Google-Sender-Auth: h5Fd-HN2NUDiwwlv-FnMtss3mD8 Message-ID: To: Thomas Monjalon Cc: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-dev] [PATCH v2] doc: announce API changes to implement the bus model 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: Mon, 13 Feb 2017 21:53:08 -0000 On Mon, Feb 13, 2017 at 5:20 PM, Thomas Monjalon wrote: > The new bus model has been proposed in 17.02 without being used. > The big rework should happen in 17.05. > > Suggested-by: Shreyansh Jain > Signed-off-by: Thomas Monjalon > --- > doc/guides/rel_notes/deprecation.rst | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index f0b5329..8b66407 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -13,10 +13,14 @@ Deprecation Notices > has exposed, like the way we have done with uio-pci-generic. This change > targets release 17.05. > > -* ``eth_driver`` is planned to be removed in 17.02. This currently serves as > +* The PCI and VDEV subsystems will be converted as drivers of the new bus model. > + It will imply some EAL API changes in 17.05. > + > +* ``eth_driver`` is planned to be removed in 17.05. This currently serves as > a placeholder for PMDs to register themselves. Changes for ``rte_bus`` will > provide a way to handle device initialization currently being done in > - ``eth_driver``. > + ``eth_driver``. Similarly, ``rte_pci_driver`` is planned to be removed from > + ``rte_cryptodev_driver`` in 17.05. > > * ethdev: an API change is planned for 17.02 for the function > ``_rte_eth_dev_callback_process``. In 17.02 the function will return an ``int`` > -- > 2.7.0 > Acked-by: Jan Blunck