<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>abd2fddc - net/ncsi: add NCSI Intel OEM command to keep PHY up</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Kconfig#abd2fddc</link>
        <description>net/ncsi: add NCSI Intel OEM command to keep PHY upThis allows to keep PHY link up and prevents any channel resets duringthe host load.It is KEEP_PHY_LINK_UP option(Veto bit) in i210 datasheet whichblock PHY reset and power state changes.Signed-off-by: Ivan Mikhaylov &lt;i.mikhaylov@yadro.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/ncsi/Kconfig</description>
        <pubDate>Thu, 08 Jul 2021 12:27:53 +0000</pubDate>
        <dc:creator>Ivan Mikhaylov &lt;i.mikhaylov@yadro.com&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/net/ncsi/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&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/net/ncsi/Kconfig#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/Kconfig</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>cb10c7c0 - net/ncsi: Add NCSI Broadcom OEM command</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/ncsi/Kconfig#cb10c7c0</link>
        <description>net/ncsi: Add NCSI Broadcom OEM commandThis patch adds OEM Broadcom commands and response handling. It alsodefines OEM Get MAC Address handler to get and configure the device.ncsi_oem_gma_handler_bcm: This handler send NCSI broadcom command forgetting mac address.ncsi_rsp_handler_oem_bcm: This handles response received for allbroadcom OEM commands.ncsi_rsp_handler_oem_bcm_gma: This handles get mac address response andset it to device.Signed-off-by: Vijay Khemka &lt;vijaykhemka@fb.com&gt;Reviewed-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/Kconfig</description>
        <pubDate>Tue, 16 Oct 2018 19:13:19 +0000</pubDate>
        <dc:creator>Vijay Khemka &lt;vijaykhemka@fb.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/Kconfig#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/Kconfig</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>
