<?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>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/drivers/net/ethernet/socionext/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/drivers/net/ethernet/socionext/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>5c67bf0e - net: netsec: Use page_pool API</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/socionext/Kconfig#5c67bf0e</link>
        <description>net: netsec: Use page_pool APIUse page_pool and it&apos;s DMA mapping capabilities for Rx buffers insteadof netdev/napi_alloc_frag()Although this will result in a slight performance penalty on small sizedpackets (~10%) the use of the API will allow to easily add XDP support.The penalty won&apos;t be visible in network testing i.e ipef/netperf etc, itonly happens during raw packet drops.Furthermore we intend to add recycling capabilities on the APIin the future. Once the recycling is added the performance penalty willgo away.The only &apos;real&apos; penalty is the slightly increased memory usage, since wenow allocate a page per packet instead of the amount of bytes we need +skb metadata (difference is roughly 2kb per packet).With a minimum of 4BG of RAM on the only SoC that has this NIC theextra memory usage is negligible (a bit more on 64K pages)Signed-off-by: Ilias Apalodimas &lt;ilias.apalodimas@linaro.org&gt;Acked-by: Jesper Dangaard Brouer &lt;brouer@redhat.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/socionext/Kconfig</description>
        <pubDate>Sat, 29 Jun 2019 05:23:23 +0000</pubDate>
        <dc:creator>Ilias Apalodimas &lt;ilias.apalodimas@linaro.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/drivers/net/ethernet/socionext/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/drivers/net/ethernet/socionext/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>57878f2f - net: ethernet: ave: add support for phy-mode setting of system controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/socionext/Kconfig#57878f2f</link>
        <description>net: ethernet: ave: add support for phy-mode setting of system controllerThis patch adds support for specifying system controller that configuresphy-mode setting.According to the DT property &quot;phy-mode&quot;, it&apos;s necessary to configure thecontroller, which is used to choose the settings of the MAC suitable,for example, mdio pin connections, internal clocks, and so on.Supported phy-modes are SoC-dependent. The driver allows phy-mode to set&quot;internal&quot; if the SoC has a built-in PHY, and {&quot;mii&quot;, &quot;rmii&quot;, &quot;rgmii&quot;}if the SoC supports each mode. So we have to check whether the phy-modeis valid or not.This adds the following features for each SoC:- check whether the SoC supports the specified phy-mode- configure the controller accroding to phy-modeThe DT property accepts one argument to distinguish them for multiple MACinstances.ethernet@65000000 {	...	socionext,syscon-phy-mode = &lt;&amp;soc_glue 0&gt;;};ethernet@65200000 {	...	socionext,syscon-phy-mode = &lt;&amp;soc_glue 1&gt;;};Signed-off-by: Kunihiko Hayashi &lt;hayashi.kunihiko@socionext.com&gt;Signed-off-by: Masahiro Yamada &lt;yamada.masahiro@socionext.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/socionext/Kconfig</description>
        <pubDate>Thu, 19 Apr 2018 07:24:55 +0000</pubDate>
        <dc:creator>Kunihiko Hayashi &lt;hayashi.kunihiko@socionext.com&gt;</dc:creator>
    </item>
<item>
        <title>533dd11a - net: socionext: Add Synquacer NetSec driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/socionext/Kconfig#533dd11a</link>
        <description>net: socionext: Add Synquacer NetSec driverThis driver adds support for Socionext &quot;netsec&quot; IP GigabitEthernet + PHY IP used in the Synquacer SC2A11 SoC.Signed-off-by: Ard Biesheuvel &lt;ard.biesheuvel@linaro.org&gt;Signed-off-by: Jassi Brar &lt;jaswinder.singh@linaro.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/socionext/Kconfig</description>
        <pubDate>Sat, 06 Jan 2018 14:14:37 +0000</pubDate>
        <dc:creator>Jassi Brar &lt;jaswinder.singh@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>4c270b55 - net: ethernet: socionext: add AVE ethernet driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/socionext/Kconfig#4c270b55</link>
        <description>net: ethernet: socionext: add AVE ethernet driverThe UniPhier platform from Socionext provides the AVE ethernetcontroller that includes MAC and MDIO bus supporting RGMII/RMIImodes. The controller is named AVE.Signed-off-by: Kunihiko Hayashi &lt;hayashi.kunihiko@socionext.com&gt;Signed-off-by: Jassi Brar &lt;jaswinder.singh@linaro.org&gt;Reviewed-by: Andrew Lunn &lt;andrew@lunn.ch&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/socionext/Kconfig</description>
        <pubDate>Thu, 28 Dec 2017 06:58:12 +0000</pubDate>
        <dc:creator>Kunihiko Hayashi &lt;hayashi.kunihiko@socionext.com&gt;</dc:creator>
    </item>
</channel>
</rss>
