<?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>59d6bcce - net: tipc: remove redundant &apos;bool&apos; from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#59d6bcce</link>
        <description>net: tipc: remove redundant &apos;bool&apos; from CONFIG_TIPC_{MEDIA_UDP,CRYPTO}The &apos;bool&apos; is already specified for these options.The second &apos;bool&apos; under the help message is redundant.While I am here, I moved &apos;default y&apos; above, as it is common to placethe help text last.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Reviewed-by: Simon Horman &lt;horms@kernel.org&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Sun, 04 Feb 2024 13:12:26 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c5301899 - tipc: not enable tipc when ipv6 works as a module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#c5301899</link>
        <description>tipc: not enable tipc when ipv6 works as a moduleWhen using ipv6_dev_find() in one module, it requires ipv6 not towork as a module. Otherwise, this error occurs in build:  undefined reference to `ipv6_dev_find&apos;.So fix it by adding &quot;depends on IPV6 || IPV6=n&quot; to tipc/Kconfig,as it does in sctp/Kconfig.Fixes: 5a6f6f579178 (&quot;tipc: set ub-&gt;ifindex for local ipv6 address&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Xin Long &lt;lucien.xin@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Sun, 16 Aug 2020 09:32:03 +0000</pubDate>
        <dc:creator>Xin Long &lt;lucien.xin@gmail.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/tipc/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/tipc/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>fc1b6d6d - tipc: introduce TIPC encryption &amp; authentication</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#fc1b6d6d</link>
        <description>tipc: introduce TIPC encryption &amp; authenticationThis commit offers an option to encrypt and authenticate all messaging,including the neighbor discovery messages. The currently most advancedalgorithm supported is the AEAD AES-GCM (like IPSec or TLS). Allencryption/decryption is done at the bearer layer, just before leavingor after entering TIPC.Supported features:- Encryption &amp; authentication of all TIPC messages (header + data);- Two symmetric-key modes: Cluster and Per-node;- Automatic key switching;- Key-expired revoking (sequence number wrapped);- Lock-free encryption/decryption (RCU);- Asynchronous crypto, Intel AES-NI supported;- Multiple cipher transforms;- Logs &amp; statistics;Two key modes:- Cluster key mode: One single key is used for both TX &amp; RX in allnodes in the cluster.- Per-node key mode: Each nodes in the cluster has one specific TX key.For RX, a node requires its peers&apos; TX key to be able to decrypt themessages from those peers.Key setting from user-space is performed via netlink by a user program(e.g. the iproute2 &apos;tipc&apos; tool).Internal key state machine:                                 Attach    Align(RX)                                     +-+   +-+                                     | V   | V        +---------+      Attach     +---------+        |  IDLE   |----------------&gt;| PENDING |(user = 0)        +---------+                 +---------+           A   A                   Switch|  A           |   |                         |  |           |   | Free(switch/revoked)    |  |     (Free)|   +----------------------+  |  |Timeout           |              (TX)        |  |  |(RX)           |                          |  |  |           |                          |  v  |        +---------+      Switch     +---------+        | PASSIVE |&lt;----------------| ACTIVE  |        +---------+       (RX)      +---------+        (user = 1)                  (user &gt;= 1)The number of TFMs is 10 by default and can be changed via the procfs&apos;net/tipc/max_tfms&apos;. At this moment, as for simplicity, this file isalso used to print the crypto statistics at runtime:echo 0xfff1 &gt; /proc/sys/net/tipc/max_tfmsThe patch defines a new TIPC version (v7) for the encryption message (-backward compatibility as well). The message is basically encapsulatedas follows:   +----------------------------------------------------------+   | TIPCv7 encryption  | Original TIPCv2    | Authentication |   | header             | packet (encrypted) | Tag            |   +----------------------------------------------------------+The throughput is about ~40% for small messages (compared with non-encryption) and ~9% for large messages. With the support from hardwarecrypto i.e. the Intel AES-NI CPU instructions, the throughput increasesupto ~85% for small messages and ~55% for large messages.By default, the new feature is inactive (i.e. no encryption) until usersets a key for TIPC. There is however also a new option - &quot;TIPC_CRYPTO&quot;in the kernel configuration to enable/disable the new code when needed.MAINTAINERS | add two new files &apos;crypto.h&apos; &amp; &apos;crypto.c&apos; in tipcAcked-by: Ying Xue &lt;ying.xue@windreiver.com&gt;Acked-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Signed-off-by: Tuong Lien &lt;tuong.t.lien@dektech.com.au&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Fri, 08 Nov 2019 05:05:11 +0000</pubDate>
        <dc:creator>Tuong Lien &lt;tuong.t.lien@dektech.com.au&gt;</dc:creator>
    </item>
<item>
        <title>cd238eff - docs: kbuild: convert docs to ReST and rename to *.rst</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#cd238eff</link>
        <description>docs: kbuild: convert docs to ReST and rename to *.rstThe kbuild documentation clearly shows that the documentsthere are written at different times: some use markdown,some use their own peculiar logic to split sections.Convert everything to ReST without affecting too muchthe author&apos;s style and avoiding adding uneeded markups.The conversion is actually:  - add blank lines and identation in order to identify paragraphs;  - fix tables markups;  - add some lists markups;  - mark literal blocks;  - adjust title markups.At its new index.rst, let&apos;s add a :orphan: while this is not linked tothe main index.rst file, in order to avoid build warnings.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;Signed-off-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Wed, 12 Jun 2019 17:52:48 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@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/tipc/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/tipc/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>c30b70de - tipc: implement socket diagnostics for AF_TIPC</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#c30b70de</link>
        <description>tipc: implement socket diagnostics for AF_TIPCThis commit adds socket diagnostics capability for AF_TIPC in netlinkfamily NETLINK_SOCK_DIAG in a new kernel module (diag.ko).The following are key design considerations:- config TIPC_DIAG has default y, like INET_DIAG.- only requests with flag NLM_F_DUMP is supported (dump all).- tipc_sock_diag_req message is introduced to send filter parameters.- the response attributes are of TLV, some nested.To avoid exposing data structures between diag and tipc modules andavoid code duplication, the following additions are required:- export tipc_nl_sk_walk function to reuse socket iterator.- export tipc_sk_fill_sock_diag to fill the tipc diag attributes.- create a sock_diag response message in __tipc_add_sock_diag defined  in diag.c and use the above exported tipc_sk_fill_sock_diag  to fill response.Acked-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Acked-by: Ying Xue &lt;ying.xue@windriver.com&gt;Signed-off-by: GhantaKrishnamurthy MohanKrishna &lt;mohan.krishna.ghanta.krishnamurthy@ericsson.com&gt;Signed-off-by: Parthasarathy Bhuvaragan &lt;parthasarathy.bhuvaragan@gmail.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Wed, 21 Mar 2018 13:37:44 +0000</pubDate>
        <dc:creator>GhantaKrishnamurthy MohanKrishna &lt;mohan.krishna.ghanta.krishnamurthy@ericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>d0f91938 - tipc: add ip/udp media type</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#d0f91938</link>
        <description>tipc: add ip/udp media typeThe ip/udp bearer can be configured in a point-to-pointmode by specifying both local and remote ip/hostname,or it can be enabled in multicast mode, where links areestablished to all tipc nodes that have joined the samemulticast group. The multicast IP address is generatedbased on the TIPC network ID, but can be overridden byusing another multicast address as remote ip.Signed-off-by: Erik Hugne &lt;erik.hugne@ericsson.com&gt;Reviewed-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Reviewed-by: Ying Xue &lt;ying.xue@windriver.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Thu, 05 Mar 2015 09:23:49 +0000</pubDate>
        <dc:creator>Erik Hugne &lt;erik.hugne@ericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>07f6c4bc - tipc: convert tipc reference table to use generic rhashtable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#07f6c4bc</link>
        <description>tipc: convert tipc reference table to use generic rhashtableAs tipc reference table is statically allocated, its memory sizerequested on stack initialization stage is quite big even if themaximum port number is just restricted to 8191 currently, however,the number already becomes insufficient in practice. But if themaximum ports is allowed to its theory value - 2^32, its consumedmemory size will reach a ridiculously unacceptable value. Apart fromthis, heavy tipc users spend a considerable amount of time intipc_sk_get() due to the read-lock on ref_table_lock.If tipc reference table is converted with generic rhashtable, abovementioned both disadvantages would be resolved respectively: makinguse of the new resizable hash table can avoid locking on the lookup;smaller memory size is required at initial stage, for example, 256hash bucket slots are requested at the beginning phase instead ofallocating the entire 8191 slots in old mode. The hash table willgrow if entries exceeds 75% of table size up to a total table sizeof 1M, and it will automatically shrink if usage falls below 30%,but the minimum table size is allowed down to 256.Also converts ref_table_lock to a separate mutex to protect hash tablemutations on write side. Lastly defers the release of the socketreference using call_rcu() to allow using an RCU read-side protectedcall to rhashtable_lookup().Signed-off-by: Ying Xue &lt;ying.xue@windriver.com&gt;Acked-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Acked-by: Erik Hugne &lt;erik.hugne@ericsson.com&gt;Cc: Thomas Graf &lt;tgraf@suug.ch&gt;Acked-by: Thomas Graf &lt;tgraf@suug.ch&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Wed, 07 Jan 2015 05:41:58 +0000</pubDate>
        <dc:creator>Ying Xue &lt;ying.xue@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>a29a194a - tipc: add InfiniBand media type</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#a29a194a</link>
        <description>tipc: add InfiniBand media typeAdd InfiniBand media type based on the ethernet media type.The only real difference is that in case of InfiniBand, we need the entire20 bytes of space reserved for media addresses, so the TIPC media type ID isnot explicitly stored in the packet payload.Sample output of tipc-config:# tipc-config -v -addr -netid -nt=all -p -m -b -n -lsnode address: &lt;10.1.4&gt;current network id: 4711Type       Lower      Upper      Port Identity              Publication Scope0          167776257  167776257  &lt;10.1.1:1855512577&gt;        1855512578  cluster           167776260  167776260  &lt;10.1.4:1216454657&gt;        1216454658  zone1          1          1          &lt;10.1.4:1216479235&gt;        1216479236  nodePorts:1216479235: bound to {1,1}1216454657: bound to {0,167776260}Media:ethibBearers:ib:ib0Nodes known:&lt;10.1.1&gt;: upLink &lt;broadcast-link&gt;  Window:20 packets  RX packets:0 fragments:0/0 bundles:0/0  TX packets:0 fragments:0/0 bundles:0/0  RX naks:0 defs:0 dups:0  TX naks:0 acks:0 dups:0  Congestion bearer:0 link:0  Send queue max:0 avg:0Link &lt;10.1.4:ib0-10.1.1:ib0&gt;  ACTIVE  MTU:2044  Priority:10  Tolerance:1500 ms  Window:50 packets  RX packets:80 fragments:0/0 bundles:0/0  TX packets:40 fragments:0/0 bundles:0/0  TX profile sample:22 packets  average:54 octets  0-64:100% -256:0% -1024:0% -4096:0% -16384:0% -32768:0% -66000:0%  RX states:410 probes:213 naks:0 defs:0 dups:0  TX states:410 probes:197 naks:0 acks:0 dups:0  Congestion bearer:0 link:0  Send queue max:1 avg:0Signed-off-by: Patrick McHardy &lt;kaber@trash.net&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Wed, 17 Apr 2013 06:18:28 +0000</pubDate>
        <dc:creator>Patrick McHardy &lt;kaber@trash.net&gt;</dc:creator>
    </item>
<item>
        <title>f887cc48 - net/tipc: remove depends on CONFIG_EXPERIMENTAL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#f887cc48</link>
        <description>net/tipc: 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: Jon Maloy &lt;jon.maloy@ericsson.com&gt;CC: Allan Stephens &lt;allan.stephens@windriver.com&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;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Tue, 02 Oct 2012 18:20:02 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>94fc9c47 - tipc: delete TIPC_ADVANCED Kconfig variable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#94fc9c47</link>
        <description>tipc: delete TIPC_ADVANCED Kconfig variableThere used to be a time when TIPC had lots of Kconfig knobs theend user could alter, but they have all been made automatic orobsolete, with the exception of CONFIG_TIPC_PORTS.  Thispreviously existing set of options was all hidden under theTIPC_ADVANCED setting, which does not exist in any code, butonly in Kconfig scope.Having this now, just to hide the one remaining &quot;advanced&quot;option no longer makes sense.  Remove it.  Also get rid of theifdeffery in the TIPC code that allowed for TIPC_PORTS to bepossibly undefined.Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Thu, 22 Nov 2012 01:11:54 +0000</pubDate>
        <dc:creator>Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>869dd466 - tipc: remove print_buf and deprecated log buffer code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#869dd466</link>
        <description>tipc: remove print_buf and deprecated log buffer codeThe internal log buffer handling functions can now safely beremoved since there is no code using it anymore.  Requests tointeract with the internal tipc log buffer over netlink (inconfig.c) will report &apos;obsolete command&apos;.This represents the final removal of any references to astruct print_buf, and the removal of the struct itself.We also get rid of a TIPC specific Kconfig in the process.Finally, log.h is removed since it is not needed anymore.Signed-off-by: Erik Hugne &lt;erik.hugne@ericsson.com&gt;Signed-off-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Fri, 29 Jun 2012 04:50:24 +0000</pubDate>
        <dc:creator>Erik Hugne &lt;erik.hugne@ericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>568fc588 - tipc: remove TIPC packet debugging functions and macros</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#568fc588</link>
        <description>tipc: remove TIPC packet debugging functions and macrosThe link queue traces and packet level debug functions serveda purpose during early development, but are now redundantsince there are other, more capable tools available fordebugging at the packet level.The TIPC_DEBUG Kconfig option is removed since it does notprovide any extra debugging features anymore.This gets rid of a lot of tipc_printf usages, which willmake the pending cleanup work of that function easier.Signed-off-by: Erik Hugne &lt;erik.hugne@ericsson.com&gt;Signed-off-by: Jon Maloy &lt;jon.maloy@ericsson.com&gt;Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Fri, 29 Jun 2012 04:50:21 +0000</pubDate>
        <dc:creator>Erik Hugne &lt;erik.hugne@ericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>f831c963 - tipc: Eliminate configuration for maximum number of cluster nodes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#f831c963</link>
        <description>tipc: Eliminate configuration for maximum number of cluster nodesGets rid of the need for users to specify the maximum number ofcluster nodes supported by TIPC. TIPC now automatically providessupport for all 4K nodes allowed by its addressing scheme.Note: This change sets TIPC&apos;s memory usage to the amount used bya maximum size node table with 4K entries.  An upcoming patch thatconverts the node table from a linear array to a hash table willcompact the node table to a more efficient design, but for clarityit is nice to have all the Kconfig infrastruture go away separately.Signed-off-by: Allan Stephens &lt;Allan.Stephens@windriver.com&gt;Signed-off-by: Paul Gortmaker &lt;paul.gortmaker@windriver.com&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Fri, 25 Feb 2011 19:22:11 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;Allan.Stephens@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>0e65967e - tipc: cleanup various cosmetic whitespace issues</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#0e65967e</link>
        <description>tipc: cleanup various cosmetic whitespace issuesCleans up TIPC&apos;s source code to eliminate deviations from generallyaccepted coding conventions relating to leading/trailing white spaceand white space around commas, braces, cases, and sizeof.These changes are purely cosmetic and do not alter the operation of TIPCin any way.Signed-off-by: Allan Stephens &lt;Allan.Stephens@windriver.com&gt;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/net/tipc/Kconfig</description>
        <pubDate>Fri, 31 Dec 2010 18:59:32 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;Allan.Stephens@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>6e7e309c - tipc: Finish streamlining of debugging code</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#6e7e309c</link>
        <description>tipc: Finish streamlining of debugging codeCompletes the simplification of TIPC&apos;s debugging capabilities. By defaultTIPC includes no debugging code, and any debugging code added by developersthat calls the dbg() and dbg_macros() is compiled out. If debugging supportis enabled, TIPC prints out some additional data about its internal statewhen certain abnormal conditions occur, and any developer-added calls to theTIPC debug macros are compiled in.Signed-off-by: Allan Stephens &lt;Allan.Stephens@windriver.com&gt;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/net/tipc/Kconfig</description>
        <pubDate>Fri, 31 Dec 2010 18:59:28 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;Allan.Stephens@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>8f92df6a - tipc: Remove prototype code for supporting multiple clusters</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#8f92df6a</link>
        <description>tipc: Remove prototype code for supporting multiple clustersEliminates routines, data structures, and files that were intendedto allow TIPC to support a network containing multiple clusters.Currently, TIPC supports only networks consisting of a single clusterwithin a single zone, so this code is unnecessary.Signed-off-by: Allan Stephens &lt;Allan.Stephens@windriver.com&gt;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/net/tipc/Kconfig</description>
        <pubDate>Fri, 31 Dec 2010 18:59:19 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;Allan.Stephens@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>51f98a8d - tipc: Remove prototype code for supporting multiple zones</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#51f98a8d</link>
        <description>tipc: Remove prototype code for supporting multiple zonesEliminates routines, data structures, and files that were intendedto allows TIPC to support a network containing multiple zones.Currently, TIPC supports only networks consisting of a single clusterwithin a single zone, so this code is unnecessary.Signed-off-by: Allan Stephens &lt;Allan.Stephens@windriver.com&gt;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/net/tipc/Kconfig</description>
        <pubDate>Fri, 31 Dec 2010 18:59:16 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;Allan.Stephens@windriver.com&gt;</dc:creator>
    </item>
<item>
        <title>7981d6f6 - tipc: Clean up configuration file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/tipc/Kconfig#7981d6f6</link>
        <description>tipc: Clean up configuration fileThis patch addresses a number of minor (mostly cosmetic) issues relatingto the configuration of TIPC, including the following:- Corrects range limits for maximum number of ports per node- Adds missing range limits for size of log buffer- Removes configuration setting relating to unsupported slave node capability- Standardizes description and help text wording for configuration settings- Removes unneeded blank spacesSigned-off-by: Allan Stephens &lt;allan.stephens@windriver.com&gt;Signed-off-by: David S. Miller &lt;davem@davemloft.net&gt;

            List of files:
            /linux-6.15/net/tipc/Kconfig</description>
        <pubDate>Tue, 19 Jan 2010 22:23:57 +0000</pubDate>
        <dc:creator>Allan Stephens &lt;allan.stephens@windriver.com&gt;</dc:creator>
    </item>
</channel>
</rss>
