<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c0cf5bdd - rdma/siw: addition to kernel build environment</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/sw/Makefile#c0cf5bdd</link>
        <description>rdma/siw: addition to kernel build environmentBroken up commit to add the Soft iWarp RDMA driver.Signed-off-by: Bernard Metzler &lt;bmt@zurich.ibm.com&gt;Signed-off-by: Jason Gunthorpe &lt;jgg@mellanox.com&gt;

            List of files:
            /linux-6.15/drivers/infiniband/sw/Makefile</description>
        <pubDate>Thu, 20 Jun 2019 16:21:33 +0000</pubDate>
        <dc:creator>Bernard Metzler &lt;bmt@zurich.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/sw/Makefile#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/infiniband/sw/Makefile</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>8700e3e7 - Soft RoCE driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/sw/Makefile#8700e3e7</link>
        <description>Soft RoCE driverSoft RoCE (RXE) - The software RoCE driverib_rxe implements the RDMA transport and registers to the RDMA coredevice as a kernel verbs provider. It also implements the packet IOlayer. On the other hand ib_rxe registers to the Linux netdev stackas a udp encapsulating protocol, in that case RDMA, for sending andreceiving packets over any Ethernet device.  This yields a RDMAtransport over the UDP/Ethernet network layer forming a RoCEv2compatible device.The configuration procedure of the Soft RoCE drivers requiresbinding to any existing Ethernet network device. This is done with/sys interface.A userspace Soft RoCE library (librxe) provides user applicationsthe ability to run with Soft RoCE devices.  The use of rxe verbs insuser space requires the inclusion of librxe as a device specificsplug-in to libibverbs. librxe is packaged separately.Architecture:     +-----------------------------------------------------------+     |                          Application                      |     +-----------------------------------------------------------+                            +-----------------------------------+                            |             libibverbs            |User                        +-----------------------------------+                            +----------------+ +----------------+                            | librxe         | | HW RoCE lib    |                            +----------------+ +----------------++---------------------------------------------------------------+     +--------------+                           +------------+     | Sockets      |                           | RDMA ULP   |     +--------------+                           +------------+     +--------------+                  +---------------------+     | TCP/IP       |                  | ib_core             |     +--------------+                  +---------------------+                             +------------+ +----------------+Kernel                       | ib_rxe     | | HW RoCE driver |                             +------------+ +----------------+     +------------------------------------+     | NIC driver                         |     +------------------------------------+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     +-----------------------------------------------------------+     |                          Application                      |     +-----------------------------------------------------------+                            +-----------------------------------+                            |             libibverbs            |User                        +-----------------------------------+                            +----------------+ +----------------+                            | librxe         | | HW RoCE lib    |                            +----------------+ +----------------+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~     +--------------+                           +------------+     | Sockets      |                           | RDMA ULP   |     +--------------+                           +------------+     +--------------+                  +---------------------+     | TCP/IP       |                  | ib_core             |     +--------------+                  +---------------------+                             +------------+ +----------------+Kernel                       | ib_rxe     | | HW RoCE driver |                             +------------+ +----------------+     +------------------------------------+     | NIC driver                         |     +------------------------------------+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Soft RoCE resources:[1[ https://github.com/SoftRoCE/librxe-dev librxe - source code inGithub[2] https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home - Soft RoCEWiki page[3] https://github.com/SoftRoCE/librxe-dev - Soft RoCE userspace librarySigned-off-by: Kamal Heib &lt;kamalh@mellanox.com&gt;Signed-off-by: Amir Vadai &lt;amirv@mellanox.com&gt;Signed-off-by: Moni Shoua &lt;monis@mellanox.com&gt;Reviewed-by: Haggai Eran &lt;haggaie@mellanox.com&gt;Signed-off-by: Doug Ledford &lt;dledford@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/infiniband/sw/Makefile</description>
        <pubDate>Thu, 16 Jun 2016 13:45:23 +0000</pubDate>
        <dc:creator>Moni Shoua &lt;monis@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>0194621b - IB/rdmavt: Create module framework and handle driver registration</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/infiniband/sw/Makefile#0194621b</link>
        <description>IB/rdmavt: Create module framework and handle driver registrationThis patch introduces the basics for a new module called rdma_vt. This newdriver is a software implementation of the InfiniBand verbs and aims toreplace the multiple implementations that exist and duplicate each others&apos;code.While the call to actually register the device with the IB core happens inrdma_vt, most of the work is still done in the drivers themselves. Thiswill be changing in a follow on patch this is just laying the groundworkfor this infrastructure.Reviewed-by: Ira Weiny &lt;ira.weiny@intel.com&gt;Reviewed-by: Mike Marciniszyn &lt;mike.marciniszyn@intel.com&gt;Signed-off-by: Dennis Dalessandro &lt;dennis.dalessandro@intel.com&gt;Signed-off-by: Doug Ledford &lt;dledford@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/infiniband/sw/Makefile</description>
        <pubDate>Wed, 06 Jan 2016 17:50:24 +0000</pubDate>
        <dc:creator>Dennis Dalessandro &lt;dennis.dalessandro@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
