From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f180.google.com (mail-wr0-f180.google.com [209.85.128.180]) by dpdk.org (Postfix) with ESMTP id DE71D2A5E for ; Tue, 14 Feb 2017 15:12:10 +0100 (CET) Received: by mail-wr0-f180.google.com with SMTP id k90so170520447wrc.3 for ; Tue, 14 Feb 2017 06:12:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=z5Ft7oEGAXD/OBv+DRDLaGjFij1pTJs3hEwRlYN0UcM=; b=BE7Aua3Cmn/8ji9XGpZEBPdRQbbolAd+vTZAwqsRmP0QQWC2lgaLgtNEmcFSjq6FDA N5PuvcOXrZz7DOJU/JRJTBafv5uc8/juT1M3KlFJ7HeLQMxs7Nw/9wJFy27lyUGlUa9E 3RiBdaNhIXmguuq9qe9SwV2OlvrdpsorwppQ8slIIw+s1gY395lc2ykju/eSHXlNr7de gDhRn5WggYKj3jA2/IluruSzbuqTwG9qQ3uPnXgC2K7G4j+72w8ceNsPndkSIWB2mTlW NXiFYy6eMcugbUXLwW4+o4Qs6oDxajEr3NEw+lRhRtyOcG058QOpDRXuj4Td5AusnQVM LCCg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=z5Ft7oEGAXD/OBv+DRDLaGjFij1pTJs3hEwRlYN0UcM=; b=N1eU30DLVNec8UTgN8fc2xPJAHDm7QI3BGN1vsgY2KliKwwiNFClW3HSXuCLsJyuuu gy8Ak+SiBJ7Ml+cWO2n6n308EE9j2a3WN6rdhEs1oqYDv7u4HZv60ApkG3V/UHsJG769 4XTixjBkCM16QOrGF2kB5wwZZrY6F2bL8EqsckMbMd7psOCiFtdNZe/+8TBbcb+hNbGQ YyHXkGKhyCkQXYkBZ789KVQXHRX9S/WQkxar1PpXlPBzGzfvB+w1aKFGL2Nvc3kY8G/y p4OPwFzG/m6A+ypT2QXuUUQogh59bFSf3Z/P5dSCc9HuPZrhC8EAb5a2u2SdP04UiLRZ cHvw== X-Gm-Message-State: AMke39nff7ZXS18kC32WVkcZwNJGNfRl4tqZvUso/Awdd9UC/+VZwK6RicnkKXtbLFc6BkwD X-Received: by 10.223.134.7 with SMTP id 7mr23957750wrv.45.1487081530690; Tue, 14 Feb 2017 06:12:10 -0800 (PST) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id d29sm1441069wmi.19.2017.02.14.06.12.09 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 14 Feb 2017 06:12:10 -0800 (PST) From: Thomas Monjalon To: Shreyansh Jain Cc: Hemant Agrawal , dev@dpdk.org Date: Tue, 14 Feb 2017 15:12:09 +0100 Message-ID: <5863283.oP4xk1QIUq@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: <1486985388-19622-1-git-send-email-shreyansh.jain@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] doc: add EAL bus support in release notes 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: Tue, 14 Feb 2017 14:12:11 -0000 2017-02-14 12:56, Hemant Agrawal: > > Signed-off-by: Shreyansh Jain > > @@ -237,6 +237,16 @@ Resolved Issues > > EAL > > ~~~ > > > > +* **Added support for representing buses in EAL** > > + > > + A new structure ``rte_bus`` is introduced in EAL. This allows for > > + devices to be represented by buses they are connected to. A new bus > > + can be added to DPDK by extending the ``rte_bus`` structure and > > + implementing the scan and probe functions. Once a new bus is > > + registered using provided APIs, new devices can be detected and > > initialized using bus scan and probe callbacks. > > + > > + With this change, devices other than PCI or VDEV type can also be > > + represented in DPDK framework. > > > Acked-by: Hemant Agrawal It was in "Resolved Issues". Moved and applied, thanks