<?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>cd14b018 - treewide: replace or remove redundant def_bool in Kconfig files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#cd14b018</link>
        <description>treewide: replace or remove redundant def_bool in Kconfig files&apos;def_bool X&apos; is a shorthand for &apos;bool&apos; plus &apos;default X&apos;.&apos;def_bool&apos; is redundant where &apos;bool&apos; is already present, so &apos;def_bool X&apos;can be replaced with &apos;default X&apos;, or removed if X is &apos;n&apos;.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Sun, 11 Feb 2024 12:48:08 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>266f3128 - dccp: Replace HTTP links with HTTPS ones</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#266f3128</link>
        <description>dccp: Replace HTTP links with HTTPS onesRationale:Reduces attack surface on kernel devs opening the links for MITMas HTTPS traffic is much harder to manipulate.Deterministic algorithm:For each file:  If not .svg:    For each line:      If doesn&apos;t contain `\bxmlns\b`:        For each link, `\bhttp://[^# \t\r\n]*(?:\w|/)`:	  If neither `\bgnu\.org/license`, nor `\bmozilla\.org/MPL\b`:            If both the HTTP and HTTPS versions            return 200 OK and serve the same content:              Replace HTTP with HTTPS.Signed-off-by: Alexander A. Klimov &lt;grandmaster@al2klimov.de&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Mon, 13 Jul 2020 07:51:08 +0000</pubDate>
        <dc:creator>Alexander A. Klimov &lt;grandmaster@al2klimov.de&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/dccp/ccids/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/dccp/ccids/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/dccp/ccids/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/dccp/ccids/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>95148a0f - net/dccp/ccids: remove depends on CONFIG_EXPERIMENTAL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#95148a0f</link>
        <description>net/dccp/ccids: remove depends on CONFIG_EXPERIMENTALThe CONFIG_EXPERIMENTAL config item has not carried much meaning for awhile now and is almost always enabled by default. As agreed during theLinux kernel summit, remove it from any &quot;depends on&quot; lines in Kconfigs.CC: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;CC: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Acked-by: David S. Miller &lt;davem@davemloft.net&gt;Acked-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Tue, 02 Oct 2012 18:19:43 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>89858ad1 - dccp ccid-3: use per-route RTO or TCP RTO as fallback</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#89858ad1</link>
        <description>dccp ccid-3: use per-route RTO or TCP RTO as fallbackThis makes RTAX_RTO_MIN also available to CCID-3, replacing the compile-timeRTO lower bound with a per-route tunable value.The original Kconfig option solved the problem that a very low RTT (in theorder of HZ) can trigger too frequent and unnecessary reductions of thesending rate.This tunable does not affect the initial RTO value of 2 seconds specified inRFC 5348, section 4.2 and Appendix B. But like the hardcoded Kconfig value,it allows to adapt to network conditions.The same effect as the original Kconfig option of 100ms is now achieved by&gt; ip route replace to unicast 192.168.0.0/24 rto_min 100j dev eth0(assuming HZ=1000).Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Sun, 29 Aug 2010 19:23:14 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>aa1b1ff0 - net-next-2.6 [PATCH 1/1] dccp: ccids whitespace-cleanup / CodingStyle</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#aa1b1ff0</link>
        <description>net-next-2.6 [PATCH 1/1] dccp: ccids whitespace-cleanup / CodingStyleNo code change, cosmetical changes only: * whitespace cleanup via scripts/cleanfile, * remove self-references to filename at top of files, * fix coding style (extraneous brackets), * fix documentation style (kernel-doc-nano-HOWTO).Thanks are due to Ivo Augusto Calado who raised these issues bysubmitting good-quality patches.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Sat, 12 Sep 2009 07:47:01 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>4dbc242e - dccp ccid-3: Fix RFC reference</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#4dbc242e</link>
        <description>dccp ccid-3: Fix RFC referenceThanks to Wei and Arnaldo for pointing out the correctnew reference for CCID-3.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Sun, 11 Jan 2009 08:17:22 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>129fa447 - dccp: Integrate the TFRC library with DCCP</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#129fa447</link>
        <description>dccp: Integrate the TFRC library with DCCPThis patch integrates the TFRC library, which is a dependency of CCID-3 (andCCID-4), with the new use of CCIDs in the DCCP module.		Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Mon, 05 Jan 2009 05:45:33 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>ddebc973 - dccp: Lockless integration of CCID congestion-control plugins</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#ddebc973</link>
        <description>dccp: Lockless integration of CCID congestion-control pluginsBased on Arnaldo&apos;s earlier patch, this patch integrates the standardisedCCID congestion control plugins (CCID-2 and CCID-3) of DCCP with dccp.ko: * enables a faster connection path by eliminating the need to always go    through the CCID registration lock; * updates the implementation to use only a single array whose size equals   the number of configured CCIDs instead of the maximum (256); * since the CCIDs are now fixed array elements, synchronization is no   longer needed, simplifying use and implementation.CCID-2 is suggested as minimum for a basic DCCP implementation (RFC 4340, 10);CCID-3 is a standards-track CCID supported by RFC 4342 and RFC 5348.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Mon, 05 Jan 2009 05:42:53 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>410e27a4 - This reverts &quot;Merge branch &apos;dccp&apos; of git://eden-feed.erg.abdn.ac.uk/dccp_exp&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#410e27a4</link>
        <description>This reverts &quot;Merge branch &apos;dccp&apos; of git://eden-feed.erg.abdn.ac.uk/dccp_exp&quot;as it accentally contained the wrong set of patches. These will besubmitted separately.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Tue, 09 Sep 2008 11:27:22 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>c8f41d50 - dccp ccid-3: Measuring the packet size s with regard to rfc3448bis-06</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#c8f41d50</link>
        <description>dccp ccid-3: Measuring the packet size s with regard to rfc3448bis-06rfc3448bis allows three different ways of tracking the packet size `s&apos;:  1. using the MSS/MPS (at initialisation, 4.2, and in 4.1 (1)); 2. using the average of `s&apos; (in 4.1); 3. using the maximum of `s&apos; (in 4.2).Instead of hard-coding a single interpretation of rfc3448bis, this implementsa choice of all three alternatives and suggests the first as default, since itis the option which is most consistent with other parts of the specification.The patch further deprecates the update of t_ipi whenever `s&apos; changes. Thegains of doing this are only small since a change of s takes effect at thenext instant X is updated: * when the next feedback comes in (within one RTT or less); * when the nofeedback timer expires (within at most 4 RTTs). Further, there are complications caused by updating t_ipi whenever s changes: * if t_ipi had previously been updated to effect oscillation prevention (4.5),   then it is impossible to make the same adjustment to t_ipi again, thus   counter-acting the algorithm; * s may be updated any time and a modification of t_ipi depends on the current   state (e.g. no oscillation prevention is done in the absence of feedback); * in rev-06 of rfc3448bis, there are more possible cases, depending on whether   the sender is in slow-start (t_ipi &lt;= R/W_init), or in congestion-avoidance,   limited by X_recv or the throughput equation (t_ipi &lt;= t_mbi).Thus there are side effects of always updating t_ipi as s changes. These may notbe desirable. The only case I can think of where such an update makes sense isto recompute X_calc when p &gt; 0 and when s changes (not done by this patch).Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Thu, 04 Sep 2008 05:30:19 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>891e4d8a - dccp ccid-3: Tidy up CCID-Kconfig dependencies</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#891e4d8a</link>
        <description>dccp ccid-3: Tidy up CCID-Kconfig dependenciesThe per-CCID menu has several dependencies on EXPERIMENTAL. These are redundant,since net/dccp/ccids/Kconfig is sourced by net/dccp/Kconfig and since thelatter menu in turn asserts a dependency on EXPERIMENTAL.The patch removes the redundant dependencies as well as the repeated referencewithin the sub-menu.Further changes:----------------Two single dependencies on CCID-3 are replaced with a single enclosing `if&apos;.    Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Thu, 04 Sep 2008 05:30:19 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>5a577b48 - dccp ccid-2: Remove old infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#5a577b48</link>
        <description>dccp ccid-2: Remove old infrastructureThis removes * functions for which updates have been provided in the preceding patches and * the @av_vec_len field - it is no longer necessary since the buffer length is   now always computed dynamically; * conditional debugging code (CONFIG_IP_DCCP_ACKVEC).The reason for removing the conditional debugging code is that Ack Vectors are an almost inevitable necessity - RFC 4341 says that for CCID-2, Ack Vectors mustbe used. Furthermore, the code would be only interesting for coding - after some extensive testing with this patch set, having the debug code around is no longerof real help.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Thu, 04 Sep 2008 05:30:19 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>c40616c5 - [TFRC]: Provide central source file and debug facility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#c40616c5</link>
        <description>[TFRC]: Provide central source file and debug facilityThis patch changes the tfrc_lib module in the following manner: (1) a dedicated tfrc source file to call the packet history &amp;     loss interval init/exit functions. (2) a dedicated tfrc_pr_debug macro with toggle switch `tfrc_debug&apos;.Commiter note: renamed tfrc_module.c to tfrc.c, and made CONFIG_IP_DCCP_CCID3select IP_DCCP_TFRC_LIB.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Ian McDonald &lt;ian.mcdonald@jandi.co.nz&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Thu, 06 Dec 2007 14:26:38 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>6d57b43b - [DCCP]: Remove redundant dependency on IP_DCCP</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#6d57b43b</link>
        <description>[DCCP]: Remove redundant dependency on IP_DCCPThis cleans up the consequences of an earlier patch whichintroduced the `if IP_DCCP&apos; clause into net/dccp/Kconfig.The CCID Kconfig menu is sourced within this clause; as aconsequence, all tests of type `depends on IP_DCCP&apos; are nowredundant.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Ian McDonald &lt;ian.mcdonald@jandi.co.nz&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Wed, 21 Nov 2007 12:11:52 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>e333b3ed - [DCCP]: Promote CCID2 as default CCID</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#e333b3ed</link>
        <description>[DCCP]: Promote CCID2 as default CCIDThis patch addresses the following problems: 1. DCCP relies for its proper functioning on having at least one CCID module    enabled (as in TCP plugable congestion control). Currently it is possible to    disable both CCIDs and thus leave the DCCP module in a compiled, but entirely    non-functional state: no sockets can be created when no CCID is available.    Furthermore, the protocol is (again like TCP) not intended to be used without    CCIDs. Last, a non-empty CCID list is needed for doing CCID feature negotiation. 2. Internally the default CCID that is advertised by the Linux host is set to CCID2    (DCCPF_INITIAL_CCID in include/linux/dccp.h). Disabling CCID2 in the Kconfig    menu without changing the defaults leads to a failure `module not found&apos; when    trying to load the dccp module (which internally tries to load the default CCID). 3. The specification (RFC 4340, sec. 10) treats CCID2 somewhat like a    `minimum common denominator&apos;; the specification says that:    * &quot;New connections start with CCID 2 for both endpoints&quot;    * &quot;A DCCP implementation intended for general use, such as an implementation in a       general-purpose operating system kernel, SHOULD implement at least CCID 2.       The intent is to make CCID 2 broadly available for interoperability [...]&quot;    Providing CCID2 as minimum-required CCID (like Reno/Cubic in TCP) thus seems reasonable.Hence this patch automatically selects CCID2 when DCCP is enabled. Documentation also added.Discussions with Ian McDonald on this subject are gratefully acknowledged.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Ian McDonald &lt;ian.mcdonald@jandi.co.nz&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Wed, 21 Nov 2007 12:09:56 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>8a508ac2 - [DCCP]: Use higher RTO default for CCID3</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#8a508ac2</link>
        <description>[DCCP]: Use higher RTO default for CCID3The TFRC nofeedback timer normally expires after the maximum of 4RTTs and twice the current send interval (RFC 3448, 4.3). On LANswith a small RTT this can mean a high processing load and reducedperformance, since then the nofeedback timer is triggered veryfrequently.This patch provides a configuration option to set the bound for thenofeedback timer, using as default 100 milliseconds.By setting the configuration option to 0, strict RFC 3448 behaviourcan be enforced for the nofeedback timer.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Sun, 03 Dec 2006 16:50:23 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>56724aa4 - [DCCP]: Add CCID3 debug support to Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#56724aa4</link>
        <description>[DCCP]: Add CCID3 debug support to KconfigThis adds a CCID3 debug option to the configuration menuwhich is missing in Kconfig, but already used by the code.CCID 2 already provides such an entry.To enable debugging, set CONFIG_IP_DCCP_CCID3_DEBUG=yNOTE: The use of ccid3_{t,r}x_state_name is safe, since      now only enum values can appear.Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Mon, 20 Nov 2006 20:28:09 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>84116716 - [DCCP]: enable debug messages also for static builds</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/ccids/Kconfig#84116716</link>
        <description>[DCCP]: enable debug messages also for static buildsThis patch  * makes debugging (when configured) work both for static / module build  * provides generic debugging macros for use in other DCCP / CCID modules  * adds missing information about debug parameters to Kconfig  * performs some code tidy-upSigned-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;

            List of files:
            /linux-6.15/net/dccp/ccids/Kconfig</description>
        <pubDate>Mon, 20 Nov 2006 20:26:03 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
</channel>
</rss>
