<?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>a56c1470 - net: dccp: Remove dccpprobe module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#a56c1470</link>
        <description>net: dccp: Remove dccpprobe moduleRemove DCCP probe module since jprobe has been deprecated.That function is now replaced by dccp/dccp_probe trace-event.You can use it via ftrace or perftools.Signed-off-by: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Fri, 29 Dec 2017 02:48:25 +0000</pubDate>
        <dc:creator>Masami Hiramatsu &lt;mhiramat@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ee549be6 - net: dccp: Add DCCP sendmsg trace event</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#ee549be6</link>
        <description>net: dccp: Add DCCP sendmsg trace eventAdd DCCP sendmsg trace event (dccp/dccp_probe) forreplacing dccpprobe. User can trace this event viaftrace or perftools.Signed-off-by: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Fri, 29 Dec 2017 02:47:55 +0000</pubDate>
        <dc:creator>Masami Hiramatsu &lt;mhiramat@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-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/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>871a2c16 - dccp: Policy-based packet dequeueing infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#871a2c16</link>
        <description>dccp: Policy-based packet dequeueing infrastructureThis patch adds a generic infrastructure for policy-based dequeueing ofTX packets and provides two policies: * a simple FIFO policy (which is the default) and * a priority based policy (set via socket options).Both policies honour the tx_qlen sysctl for the maximum size of the writequeue (can be overridden via socket options).The priority policy uses skb-&gt;priority internally to assign an u32 priorityidentifier, using the same ranking as SO_PRIORITY. The skb-&gt;priority fieldis set to 0 when the packet leaves DCCP. The priority is supplied as ancillarydata using cmsg(3), the patch also provides the requisite parsing routines.Signed-off-by: Tomasz Grobelny &lt;tomasz@grobelny.oswiecenia.net&gt;Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Sat, 04 Dec 2010 12:38:01 +0000</pubDate>
        <dc:creator>Tomasz Grobelny &lt;tomasz@grobelny.oswiecenia.net&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/Makefile#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/Makefile</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/Makefile#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/Makefile</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/Makefile#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/Makefile</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>d6da3511 - dccp: Policy-based packet dequeueing infrastructure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#d6da3511</link>
        <description>dccp: Policy-based packet dequeueing infrastructureThis patch adds a generic infrastructure for policy-based dequeueing of TX packets and provides two policies: * a simple FIFO policy (which is the default) and * a priority based policy (set via socket options).Both policies honour the tx_qlen sysctl for the maximum size of the writequeue (can be overridden via socket options). The priority policy uses skb-&gt;priority internally to assign an u32 priorityidentifier, using the same ranking as SO_PRIORITY. The skb-&gt;priority fieldis set to 0 when the packet leaves DCCP. The priority is supplied as ancillarydata using cmsg(3), the patch also provides the requisite parsing routines.Signed-off-by: Tomasz Grobelny &lt;tomasz@grobelny.oswiecenia.net&gt;Signed-off-by: Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Thu, 04 Sep 2008 05:30:19 +0000</pubDate>
        <dc:creator>Tomasz Grobelny &lt;tomasz@grobelny.oswiecenia.net&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/Makefile#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/Makefile</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>6a128e05 - [DCCPv6]: Resolve conditional build problem</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#6a128e05</link>
        <description>[DCCPv6]: Resolve conditional build problemResolves the problem that if IPv6 was configured `y&apos; and DCCP `m&apos; thendccp_ipv6 was not built as a module. With this change, dccp_ipv6 is builtas a module whenever DCCP *OR* IPv6 are configured as modules; it will bebuilt-in only if both DCCP = `y&apos; and IPV6 = `y&apos;.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/Makefile</description>
        <pubDate>Tue, 14 Nov 2006 13:50:36 +0000</pubDate>
        <dc:creator>Gerrit Renker &lt;gerrit@erg.abdn.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>e41542f5 - [DCCP]: Introduce dccp_probe</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#e41542f5</link>
        <description>[DCCP]: Introduce dccp_probeThis adds DCCP probing shamelessly ripped off from TCP probes by StephenHemminger.I&apos;ve put in here support for further CCID3 variables as well.Andrea/Arnaldo might look to extend for CCID2.Signed-off-by: Ian McDonald &lt;ian.mcdonald@jandi.co.nz&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Fri, 22 Sep 2006 02:28:01 +0000</pubDate>
        <dc:creator>Ian McDonald &lt;ian.mcdonald@jandi.co.nz&gt;</dc:creator>
    </item>
<item>
        <title>b61fafc4 - [DCCP]: Move the IPv4 specific bits from proto.c to ipv4.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#b61fafc4</link>
        <description>[DCCP]: Move the IPv4 specific bits from proto.c to ipv4.cWith this patch in place we can break down the complexity by bettercompartmentalizing the code that is common to ipv6 and ipv4.Now we have these modules:Module                  Size  Used bydccp_diag               1344  0inet_diag               9448  1 dccp_diagdccp_ccid3             15856  0dccp_tfrc_lib          12320  1 dccp_ccid3dccp_ccid2              5764  0dccp_ipv4              16996  2dccp                   48208  4 dccp_diag,dccp_ccid3,dccp_ccid2,dccp_ipv4dccp_ipv6 still requires dccp_ipv4 due to dccp_ipv6_mapped, that isthe next target to work on the &quot;hey, ipv4 is legacy, I only want ipv6dude!&quot; direction.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Tue, 21 Mar 2006 05:25:11 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>e55d912f - [DCCP] feat: Introduce sysctls for the default features</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#e55d912f</link>
        <description>[DCCP] feat: Introduce sysctls for the default features[root@qemu ~]# for a in /proc/sys/net/dccp/default/* ; do echo $a ; cat $a ; done/proc/sys/net/dccp/default/ack_ratio2/proc/sys/net/dccp/default/rx_ccid3/proc/sys/net/dccp/default/send_ackvec1/proc/sys/net/dccp/default/send_ndp1/proc/sys/net/dccp/default/seq_window100/proc/sys/net/dccp/default/tx_ccid3[root@qemu ~]#So if wanting to test ccid3 as the tx CCID one can just do:[root@qemu ~]# echo 3 &gt; /proc/sys/net/dccp/default/tx_ccid[root@qemu ~]# echo 2 &gt; /proc/sys/net/dccp/default/rx_ccid[root@qemu ~]# cat /proc/sys/net/dccp/default/[tr]x_ccid23[root@qemu ~]#Of course we also need the setsockopt for each app to tell its preferences, butfor testing or defining something other than CCID2 as the default for apps thatdon&apos;t explicitely set their preference the sysctl interface is handy.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Tue, 21 Mar 2006 03:25:02 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>afe00251 - [DCCP]: Initial feature negotiation implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#afe00251</link>
        <description>[DCCP]: Initial feature negotiation implementationStill needs more work, but boots and doesn&apos;t crashes, evendoes some negotiation!18:38:52.174934  127.0.0.1.43458 &gt; 127.0.0.1.5001: request &lt;change_l ack_ratio 2, change_r ccid 2, change_l ccid 2&gt;18:38:52.218526  127.0.0.1.5001 &gt; 127.0.0.1.43458: response &lt;nop, nop, change_l ack_ratio 2, confirm_r ccid 2 2, confirm_l ccid 2 2, confirm_r ack_ratio 2&gt;18:38:52.185398  127.0.0.1.43458 &gt; 127.0.0.1.5001: &lt;nop, confirm_r ack_ratio 2, ack_vector0 0x00, elapsed_time 212&gt;:-)Signed-off-by: Andrea Bittau &lt;a.bittau@cs.ucl.ac.uk&gt;Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Tue, 21 Mar 2006 01:43:56 +0000</pubDate>
        <dc:creator>Andrea Bittau &lt;a.bittau@cs.ucl.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>3df80d93 - [DCCP]: Introduce DCCPv6</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#3df80d93</link>
        <description>[DCCP]: Introduce DCCPv6Still needs mucho polishing, specially in the checksum code, but worksjust fine, inet_diag/iproute2 and all 8)Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Wed, 14 Dec 2005 07:24:53 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>ae31c339 - [DCCP]: Move the ack vector code to net/dccp/ackvec.[ch]</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#ae31c339</link>
        <description>[DCCP]: Move the ack vector code to net/dccp/ackvec.[ch]Isolating it, that will be used when we introduce a CCID2 (TCP-Like)implementation.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Sun, 18 Sep 2005 07:17:51 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>4524b259 - [DCCP]: Just move packet_history.[ch] to net/dccp/ccids/lib/</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#4524b259</link>
        <description>[DCCP]: Just move packet_history.[ch] to net/dccp/ccids/lib/Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Sun, 28 Aug 2005 02:18:26 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>17b085ea - [INET_DIAG]: Move the tcp_diag interface to the proper place</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#17b085ea</link>
        <description>[INET_DIAG]: Move the tcp_diag interface to the proper placeWith this the previous setup is back, i.e. tcp_diag can be built as a module,as dccp_diag and both share the infrastructure available in inet_diag.If one selects CONFIG_INET_DIAG as module CONFIG_INET_TCP_DIAG will also bebuilt as a module, as will CONFIG_INET_DCCP_DIAG, if CONFIG_IP_DCCP wasselected static or as a module, if CONFIG_INET_DIAG is y, being staticallylinked CONFIG_INET_TCP_DIAG will follow suit and CONFIG_INET_DCCP_DIAG will bebuilt in the same manner as CONFIG_IP_DCCP.Now to aim at UDP, converting it to use inet_hashinfo, so that we can useiproute2 for UDP sockets as well.Ah, just to show an example of this new infrastructure working for DCCP :-)[root@qemu ~]# ./ss -daneState      Recv-Q Send-Q Local Address:Port  Peer Address:PortLISTEN     0      0                  *:5001             *:*     ino:942 sk:cfd503a0ESTAB      0      0          127.0.0.1:5001     127.0.0.1:32770 ino:943 sk:cfd50a60ESTAB      0      0          127.0.0.1:32770    127.0.0.1:5001  ino:947 sk:cfd50700TIME-WAIT  0      0          127.0.0.1:32769    127.0.0.1:5001  timer:(timewait,3.430ms,0) ino:0 sk:cf209620Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Fri, 12 Aug 2005 15:59:17 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>4f5736c4 - [TCPDIAG]: Introduce inet_diag_{register,unregister}</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#4f5736c4</link>
        <description>[TCPDIAG]: Introduce inet_diag_{register,unregister}Next changeset will rename tcp_diag to inet_diag and move the tcp_diag code outof it and into a new tcp_diag.c, similar to the net/dccp/diag.c introduced inthis changeset, completing the transition to a generic inet_diaginfrastructure.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Fri, 12 Aug 2005 12:27:49 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
<item>
        <title>8c60f3fa - [CCID3]: Separate most of the packet history code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/dccp/Makefile#8c60f3fa</link>
        <description>[CCID3]: Separate most of the packet history codeThis also changes the list_for_each_entry_safe_continue behaviour to match itskerneldoc comment, that is, to start after the pos passed.Also adds several helper functions from previously open coded fragments, makingthe code more clear.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;

            List of files:
            /linux-6.15/net/dccp/Makefile</description>
        <pubDate>Wed, 10 Aug 2005 15:59:38 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@mandriva.com&gt;</dc:creator>
    </item>
</channel>
</rss>
