<?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>e5f31552 - ethernet: fix PTP_1588_CLOCK dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#e5f31552</link>
        <description>ethernet: fix PTP_1588_CLOCK dependenciesThe &apos;imply&apos; keyword does not do what most people think it does, it onlypolitely asks Kconfig to turn on another symbol, but does not preventit from being disabled manually or built as a loadable module when theuser is built-in. In the ICE driver, the latter now causes a link failure:aarch64-linux-ld: drivers/net/ethernet/intel/ice/ice_main.o: in function `ice_eth_ioctl&apos;:ice_main.c:(.text+0x13b0): undefined reference to `ice_ptp_get_ts_config&apos;ice_main.c:(.text+0x13b0): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `ice_ptp_get_ts_config&apos;aarch64-linux-ld: ice_main.c:(.text+0x13bc): undefined reference to `ice_ptp_set_ts_config&apos;ice_main.c:(.text+0x13bc): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `ice_ptp_set_ts_config&apos;aarch64-linux-ld: drivers/net/ethernet/intel/ice/ice_main.o: in function `ice_prepare_for_reset&apos;:ice_main.c:(.text+0x31fc): undefined reference to `ice_ptp_release&apos;ice_main.c:(.text+0x31fc): relocation truncated to fit: R_AARCH64_CALL26 against undefined symbol `ice_ptp_release&apos;aarch64-linux-ld: drivers/net/ethernet/intel/ice/ice_main.o: in function `ice_rebuild&apos;:This is a recurring problem in many drivers, and we have discussedit several times befores, without reaching a consensus. I&apos;m providinga link to the previous email thread for reference, which discussessome related problems.To solve the dependency issue better than the &apos;imply&apos; keyword, introduce aseparate Kconfig symbol &quot;CONFIG_PTP_1588_CLOCK_OPTIONAL&quot; that any drivercan depend on if it is able to use PTP support when available, but worksfine without it. Whenever CONFIG_PTP_1588_CLOCK=m, those drivers arethen prevented from being built-in, the same way as with a &apos;depends onPTP_1588_CLOCK || !PTP_1588_CLOCK&apos; dependency that does the same trick,but that can be rather confusing when you first see it.Since this should cover the dependencies correctly, the IS_REACHABLE()hack in the header is no longer needed now, and can be turned backinto a normal IS_ENABLED() check. Any driver that gets the dependencywrong will now cause a link time failure rather than being unable to usePTP support when that is in a loadable module.However, the two recently added ptp_get_vclocks_index() andptp_convert_timestamp() interfaces are only called from builtin code withethtool and socket timestamps, so keep the current behavior by stubbingthose out completely when PTP is in a loadable module. This should beaddressed properly in a follow-up.As Richard suggested, we may want to actually turn PTP support into a&apos;bool&apos; option later on, preventing it from being a loadable modulealtogether, which would be one way to solve the problem with the ethtoolinterface.Fixes: 06c16d89d2cb (&quot;ice: register 1588 PTP clock device object for E810 devices&quot;)Link: https://lore.kernel.org/netdev/20210804121318.337276-1-arnd@kernel.org/Link: https://lore.kernel.org/netdev/CAK8P3a06enZOf=XyZ+zcAwBczv41UuCTz+=0FMf2gBz1_cOnZQ@mail.gmail.com/Link: https://lore.kernel.org/netdev/CAK8P3a3=eOxE-K25754+fB_-i_0BZzf9a9RfPTX3ppSwu9WZXw@mail.gmail.com/Link: https://lore.kernel.org/netdev/20210726084540.3282344-1-arnd@kernel.org/Acked-by: Shannon Nelson &lt;snelson@pensando.io&gt;Acked-by: Jacob Keller &lt;jacob.e.keller@intel.com&gt;Acked-by: Richard Cochran &lt;richardcochran@gmail.com&gt;Reviewed-by: Vladimir Oltean &lt;vladimir.oltean@nxp.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20210812183509.1362782-1-arnd@kernel.orgSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Thu, 12 Aug 2021 18:33:58 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>659fbdcf - cxgb4: Fix build failure when CONFIG_TLS=m</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#659fbdcf</link>
        <description>cxgb4: Fix build failure when CONFIG_TLS=mAfter commit 9d2e5e9eeb59 (&quot;cxgb4/ch_ktls: decrypted bit is not enough&quot;)whenever CONFIG_TLS=m and CONFIG_CHELSIO_T4=y, the following buildfailure occurs:ld: drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.o: in function`cxgb_select_queue&apos;:cxgb4_main.c:(.text+0x2dac): undefined reference to `tls_validate_xmit_skb&apos;Fix this by ensuring that if TLS is set to be a module, CHELSIO_T4 willalso be compiled as a module. As otherwise the cxgb4 driver will not beable to access TLS&apos; symbols.Fixes: 9d2e5e9eeb59 (&quot;cxgb4/ch_ktls: decrypted bit is not enough&quot;)Signed-off-by: Tom Seewald &lt;tseewald@gmail.com&gt;Link: https://lore.kernel.org/r/20201120192528.615-1-tseewald@gmail.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Fri, 20 Nov 2020 19:25:28 +0000</pubDate>
        <dc:creator>Tom Seewald &lt;tseewald@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>44fd1c1f - chelsio/chtls: separate chelsio tls driver from crypto driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#44fd1c1f</link>
        <description>chelsio/chtls: separate chelsio tls driver from crypto driverchelsio inline tls driver(chtls) is mostly overlaps with NIC driversbut currenty it is part of crypto driver, so move it out to appropriatedirectory for better maintenance.Signed-off-by: Vinay Kumar Yadav &lt;vinay.yadav@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Wed, 19 Aug 2020 14:01:20 +0000</pubDate>
        <dc:creator>Vinay Kumar Yadav &lt;vinay.yadav@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>132db935 - docs: networking: reorganize driver documentation again</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#132db935</link>
        <description>docs: networking: reorganize driver documentation againOrganize driver documentation by device type. Most documentshave fairly verbose yet uninformative names, so let usersfirst select a well defined device type, and then search fora particular driver.While at it rename the section from Vendor drivers toHardware drivers. This seems more accurate, besides peoplesometimes refer to out-of-tree drivers as vendor drivers.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;Acked-by: Jeff Kirsher &lt;jeffrey.t.kirsher@intel.com&gt;Acked-by: Shannon Nelson &lt;snelson@pensando.io&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Fri, 26 Jun 2020 17:27:24 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&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/drivers/net/ethernet/chelsio/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/chelsio/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>c839ce55 - docs: networking: device drivers: convert chelsio/cxgb.txt to ReST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#c839ce55</link>
        <description>docs: networking: device drivers: convert chelsio/cxgb.txt to ReST- add SPDX header;- use copyright symbol;- adjust titles and chapters, adding proper markups;- comment out text-only TOC from html/pdf output;- mark code blocks and literals as such;- add notes markups;- mark tables as such;- mark lists as such;- adjust identation, whitespaces and blank lines where needed;- add to networking/index.rst.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Fri, 01 May 2020 14:44:38 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+huawei@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/drivers/net/ethernet/chelsio/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/chelsio/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>b255e500 - net: documentation: build a directory structure for drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#b255e500</link>
        <description>net: documentation: build a directory structure for driversDocumentation/networking/ is full of cryptically named files withdriver documentation.  This makes finding interesting informationat a glance really hard.  Move all those files into a directorycalled device_drivers (since not all drivers are for device) andfix up references.RFC v0.1 -&gt; RFC v1: - also add .txt suffix to the files which are missing it (Quentin)Signed-off-by: Jakub Kicinski &lt;jakub.kicinski@netronome.com&gt;Reviewed-by: Quentin Monnet &lt;quentin.monnet@netronome.com&gt;Acked-by: David Ahern &lt;dsahern@gmail.com&gt;Acked-by: Henrik Austad &lt;henrik@austad.us&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Tue, 04 Dec 2018 01:43:28 +0000</pubDate>
        <dc:creator>Jakub Kicinski &lt;jakub.kicinski@netronome.com&gt;</dc:creator>
    </item>
<item>
        <title>ebcd210e - cxgb4: fix thermal zone build error</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#ebcd210e</link>
        <description>cxgb4: fix thermal zone build errorwith CONFIG_THERMAL=m and cxgb4 as built-in build fails, and&apos;commit e70a57fa59bb (&quot;cxgb4: fix thermal configuration dependencies&quot;)&apos;tries to fix it but when cxgb4i is made built-in build fails again,use IS_REACHABLE instead of IS_ENABLED to fix the issue.Fixes: e70a57fa59bb (cxgb4: fix thermal configuration dependencies)Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Ganesh Goudar &lt;ganeshgr@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Thu, 15 Nov 2018 10:06:21 +0000</pubDate>
        <dc:creator>Ganesh Goudar &lt;ganeshgr@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>e70a57fa - cxgb4: fix thermal configuration dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#e70a57fa</link>
        <description>cxgb4: fix thermal configuration dependenciesWith CONFIG_THERMAL=m, we get a build error:drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.c: In function &apos;cxgb4_thermal_get_trip_type&apos;:drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.c:48:11: error: &apos;struct adapter&apos; has no member named &apos;ch_thermal&apos;Once that is fixed by using IS_ENABLED() checks, we get a link erroragainst the thermal subsystem when cxgb4 is built-in:drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.o: In function `cxgb4_thermal_init&apos;:cxgb4_thermal.c:(.text+0x180): undefined reference to `thermal_zone_device_register&apos;drivers/net/ethernet/chelsio/cxgb4/cxgb4_thermal.o: In function `cxgb4_thermal_remove&apos;:cxgb4_thermal.c:(.text+0x1e0): undefined reference to `thermal_zone_device_unregister&apos;Finally, since CONFIG_THERMAL can be =m, the Makefile fails to pick up theextra file into built-in.a, and we get another link failure against thecxgb4_thermal_init/cxgb4_thermal_remove files, so the Makefile has tobe adapted as well to work for both CONFIG_THERMAL=y and =m.Fixes: b18719157762 (&quot;cxgb4: Add thermal zone support&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Thu, 11 Oct 2018 08:57:57 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>a1cf9c9f - cxgb4: enable ZLIB_DEFLATE when building cxgb4</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#a1cf9c9f</link>
        <description>cxgb4: enable ZLIB_DEFLATE when building cxgb4Fixes:drivers/net/ethernet/chelsio/cxgb4/cudbg_zlib.c:39:5: error:redefinition of &apos;cudbg_compress_buff&apos;    int cudbg_compress_buff(struct cudbg_init *pdbg_init,        ^~~~~~~~~~~~~~~~~~~   In file included fromdrivers/net/ethernet/chelsio/cxgb4/cudbg_zlib.c:23:0:   drivers/net/ethernet/chelsio/cxgb4/cudbg_zlib.h:45:19: note: previousdefinition of &apos;cudbg_compress_buff&apos; was here    static inline int cudbg_compress_buff(struct cudbg_init *pdbg_init,                      ^~~~~~~~~~~~~~~~~~~Fixes: 91c1953de387 (&quot;cxgb4: use zlib deflate to compress firmware dump&quot;)Signed-off-by: Rahul Lakkireddy &lt;rahul.lakkireddy@chelsio.com&gt;Signed-off-by: Ganesh Goudar &lt;ganeshgr@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Wed, 24 Jan 2018 08:01:04 +0000</pubDate>
        <dc:creator>Rahul Lakkireddy &lt;rahul.lakkireddy@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>b8b9d81b - libcxgb: add library module for Chelsio drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#b8b9d81b</link>
        <description>libcxgb: add library module for Chelsio driversAdd common library module(libcxgb.ko) forChelsio drivers to remove duplicate code.Code for iSCSI DDP Page Pod Manager is movedfrom cxgb4.ko to libcxgb.ko. Earlier only cxgbit.kowas using this code, now cxgb3i and cxgb4i willalso use common Page Pod manager code.In future this module will have common connectionmanagement and hardware specific code that can beshared by multiple Chelsio drivers.Signed-off-by: Varun Prakash &lt;varun@chelsio.com&gt;Reviewed-by: Steve Wise &lt;swise@opengridcomputing.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Thu, 21 Jul 2016 17:27:14 +0000</pubDate>
        <dc:creator>Varun Prakash &lt;varun@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>2994a751 - cxgb4: update Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#2994a751</link>
        <description>cxgb4: update Kconfig and Makefileupdate Kconfig and Makefile for enabling iSCSIDDP page pod manager.Signed-off-by: Varun Prakash &lt;varun@chelsio.com&gt;Acked-by: Hariprasad Shenai &lt;hariprasad@chelsio.com&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Sun, 14 Feb 2016 17:39:52 +0000</pubDate>
        <dc:creator>Varun Prakash &lt;varun@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>b8759e91 - cxgb4/cxgb4vf: update Kconfig file to include T6 adapter</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#b8759e91</link>
        <description>cxgb4/cxgb4vf: update Kconfig file to include T6 adapterSigned-off-by: Hariprasad Shenai &lt;hariprasad@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Tue, 08 Dec 2015 04:39:12 +0000</pubDate>
        <dc:creator>Hariprasad Shenai &lt;hariprasad@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>138b15ed - drivers/net: remove all references to obsolete Ethernet-HOWTO</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#138b15ed</link>
        <description>drivers/net: remove all references to obsolete Ethernet-HOWTOThis howto made sense in the 1990s when users had to manually configureISA cards with jumpers or vendor utilities, but with the implementationof PCI it became increasingly less and less relevant, to the point whereit has been well over a decade since I last updated it.  And there isno value in anyone else taking over updating it either.However the references to it continue to spread as boiler plate textfrom one Kconfig file into the next.  We are not doing end users anyfavours by pointing them at this old document, so lets kill it withfire, once and for all, to hopefully stop any further spread.No code is changed in this commit, just Kconfig help text.Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Sun, 21 Jun 2015 20:28:02 +0000</pubDate>
        <dc:creator>Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>241e9247 - cxgb4: update Kconfig and Makefile for FCoE support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#241e9247</link>
        <description>cxgb4: update Kconfig and Makefile for FCoE supportSigned-off-by: Varun Prakash &lt;varun@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Tue, 24 Mar 2015 13:44:47 +0000</pubDate>
        <dc:creator>Varun Prakash &lt;varun@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>1bb60376 - cxgb4 : Fix build failure in cxgb4 when ipv6 is disabled/not in-built</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#1bb60376</link>
        <description>cxgb4 : Fix build failure in cxgb4 when ipv6 is disabled/not in-builtcxgb4 ipv6 does not guard against ipv6 being disabled, or the standardipv6 module vs inbuilt tri-state issue. This was fixed for cxgb4i &amp; iw_cxgb4but missed for cxgb4.Signed-off-by: Anish Bhatt &lt;anish@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Wed, 15 Oct 2014 03:07:22 +0000</pubDate>
        <dc:creator>Anish Bhatt &lt;anish@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>19f43d1a - cxgb4 : Makefile &amp; Kconfig changes for DCBx support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#19f43d1a</link>
        <description>cxgb4 : Makefile &amp; Kconfig changes for DCBx supportSigned-off-by: Anish Bhatt &lt;anish@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Fri, 20 Jun 2014 04:37:14 +0000</pubDate>
        <dc:creator>Anish Bhatt &lt;anish@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>535cdf3c - cxgb4: Update Kconfig to include Chelsio T5 adapter</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#535cdf3c</link>
        <description>cxgb4: Update Kconfig to include Chelsio T5 adapterSigned-off-by: Hariprasad Shenai &lt;hariprasad@chelsio.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Fri, 25 Apr 2014 12:30:12 +0000</pubDate>
        <dc:creator>Hariprasad Shenai &lt;hariprasad@chelsio.com&gt;</dc:creator>
    </item>
<item>
        <title>9e3262e2 - cxgb3: Restore dependency on INET</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/net/ethernet/chelsio/Kconfig#9e3262e2</link>
        <description>cxgb3: Restore dependency on INETCommit ff33c0e1885cda44dd14c79f70df4706f83582a0 (&apos;net: Remove bogusdependencies on INET&apos;) wrongly removed this dependency.  cxgb3 usesthe arp_send() function defined in net/ipv4/arp.c.Reported-by: kbuild test robot &lt;fengguang.wu@intel.com&gt;Signed-off-by: Ben Hutchings &lt;bhutchings@solarflare.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/drivers/net/ethernet/chelsio/Kconfig</description>
        <pubDate>Wed, 28 Nov 2012 20:03:03 +0000</pubDate>
        <dc:creator>Ben Hutchings &lt;bhutchings@solarflare.com&gt;</dc:creator>
    </item>
</channel>
</rss>
