<?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>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/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/net/ncsi/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>955dc68c - net/ncsi: Add generic netlink family</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Makefile#955dc68c</link>
        <description>net/ncsi: Add generic netlink familyAdd a generic netlink family for NCSI. This supports three commands;NCSI_CMD_PKG_INFO which returns information on packages and theirassociated channels, NCSI_CMD_SET_INTERFACE which allows a specificpackage or package/channel combination to be set as the preferredchoice, and NCSI_CMD_CLEAR_INTERFACE which clears any preferred setting.Signed-off-by: Samuel Mendoza-Jonas &lt;sam@mendozajonas.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Makefile</description>
        <pubDate>Mon, 05 Mar 2018 00:39:05 +0000</pubDate>
        <dc:creator>Samuel Mendoza-Jonas &lt;sam@mendozajonas.com&gt;</dc:creator>
    </item>
<item>
        <title>7a82ecf4 - net/ncsi: NCSI AEN packet handler</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Makefile#7a82ecf4</link>
        <description>net/ncsi: NCSI AEN packet handlerThis introduces NCSI AEN packet handlers that result in (A) thecurrently active channel is reconfigured; (B) Currently activechannel is deconfigured and disabled, another channel is chosenas active one and configured. Case (B) won&apos;t happen if hardwarearbitration has been enabled, the channel that was in activestate is suspended simply.Signed-off-by: Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;Acked-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Makefile</description>
        <pubDate>Tue, 19 Jul 2016 01:54:20 +0000</pubDate>
        <dc:creator>Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>138635cc - net/ncsi: NCSI response packet handler</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Makefile#138635cc</link>
        <description>net/ncsi: NCSI response packet handlerThe NCSI response packets are sent to MC (Management Controller)from the remote end. They are responses of NCSI command packetsfor multiple purposes: completion status of NCSI command packets,return NCSI channel&apos;s capability or configuration etc.This defines struct to represent NCSI response packets and introducesfunction ncsi_rcv_rsp() which will be used to receive NCSI responsepackets and parse them.Signed-off-by: Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;Acked-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Makefile</description>
        <pubDate>Tue, 19 Jul 2016 01:54:18 +0000</pubDate>
        <dc:creator>Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>6389eaa7 - net/ncsi: NCSI command packet handler</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Makefile#6389eaa7</link>
        <description>net/ncsi: NCSI command packet handlerThe NCSI command packets are sent from MC (Management Controller)to remote end. They are used for multiple purposes: probe existingNCSI package/channel, retrieve NCSI channel&apos;s capability, configureNCSI channel etc.This defines struct to represent NCSI command packets and introducesfunction ncsi_xmit_cmd(), which will be used to transmit NCSI commandpacket according to the request. The request is represented by structncsi_cmd_arg.Signed-off-by: Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;Acked-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Makefile</description>
        <pubDate>Tue, 19 Jul 2016 01:54:17 +0000</pubDate>
        <dc:creator>Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>2d283bdd - net/ncsi: Resource management</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Makefile#2d283bdd</link>
        <description>net/ncsi: Resource managementNCSI spec (DSP0222) defines several objects: package, channel, mode,filter, version and statistics etc. This introduces the data structsto represent those objects and implement functions to manage them.Also, this introduces CONFIG_NET_NCSI for the newly implemented NCSIstack.   * The user (e.g. netdev driver) dereference NCSI device by     &quot;struct ncsi_dev&quot;, which is embedded to &quot;struct ncsi_dev_priv&quot;.     The later one is used by NCSI stack internally.   * Every NCSI device can have multiple packages simultaneously, up     to 8 packages. It&apos;s represented by &quot;struct ncsi_package&quot; and     identified by 3-bits ID.   * Every NCSI package can have multiple channels, up to 32. It&apos;s     represented by &quot;struct ncsi_channel&quot; and identified by 5-bits ID.   * Every NCSI channel has version, statistics, various modes and     filters. They are represented by &quot;struct ncsi_channel_version&quot;,     &quot;struct ncsi_channel_stats&quot;, &quot;struct ncsi_channel_mode&quot; and     &quot;struct ncsi_channel_filter&quot; separately.   * Apart from AEN (Asynchronous Event Notification), the NCSI stack     works in terms of command and response. This introduces &quot;struct     ncsi_req&quot; to represent a complete NCSI transaction made of NCSI     request and response.link: https://www.dmtf.org/sites/default/files/standards/documents/DSP0222_1.1.0.pdfSigned-off-by: Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;Acked-by: Joel Stanley &lt;joel@jms.id.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Makefile</description>
        <pubDate>Tue, 19 Jul 2016 01:54:16 +0000</pubDate>
        <dc:creator>Gavin Shan &lt;gwshan@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
</channel>
</rss>
