<?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>b261d222 - lib/crc: remove CONFIG_LIBCRC32C</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#b261d222</link>
        <description>lib/crc: remove CONFIG_LIBCRC32CNow that LIBCRC32C does nothing besides select CRC32, make every optionthat selects LIBCRC32C instead select CRC32 directly.  Then removeLIBCRC32C.Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: &quot;Martin K. Petersen&quot; &lt;martin.petersen@oracle.com&gt;Acked-by: Ard Biesheuvel &lt;ardb@kernel.org&gt;Link: https://lore.kernel.org/r/20250401221600.24878-8-ebiggers@kernel.orgSigned-off-by: Eric Biggers &lt;ebiggers@google.com&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Tue, 01 Apr 2025 22:16:00 +0000</pubDate>
        <dc:creator>Eric Biggers &lt;ebiggers@google.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/drivers/md/persistent-data/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/md/persistent-data/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/drivers/md/persistent-data/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/md/persistent-data/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>86bad0c7 - dm bufio: store stacktrace in buffers to help find buffer leaks</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#86bad0c7</link>
        <description>dm bufio: store stacktrace in buffers to help find buffer leaksThe option DM_DEBUG_BLOCK_STACK_TRACING is moved from persistent-datadirectory to device mapper directory because it will now be used bypersistent-data and bufio.  When the option is enabled, each bufio bufferstores the stacktrace of the last dm_bufio_get(), dm_bufio_read() ordm_bufio_new() call that increased the hold count to 1.  The buffer&apos;sstacktrace is printed if the buffer was not released before the bufioclient is destroyed.When DM_DEBUG_BLOCK_STACK_TRACING is enabled, any bufio buffer leaks areconsidered warnings - i.e. the kernel continues afterwards.  If notenabled, buffer leaks are considered BUGs and the kernel with crash.Reasoning on this disposition is: if we only ever warned on buffer leaksusers would generally ignore them and the problematic code would neverget fixed.Successfully used to find source of bufio leaks fixed with commitfce079f63c3 (&quot;dm btree: fix bufio buffer leaks in dm_btree_del() errorpath&quot;).Signed-off-by: Mikulas Patocka &lt;mpatocka@redhat.com&gt;Signed-off-by: Mike Snitzer &lt;snitzer@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Tue, 24 Nov 2015 00:20:06 +0000</pubDate>
        <dc:creator>Mikulas Patocka &lt;mpatocka@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>6341e62b - kconfig: use bool instead of boolean for type definition attributes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#6341e62b</link>
        <description>kconfig: use bool instead of boolean for type definition attributesSupport for keyword &apos;boolean&apos; will be dropped later on.No functional change.Reference: http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.comSigned-off-by: Christoph Jaeger &lt;cj@linux.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Sat, 20 Dec 2014 20:41:11 +0000</pubDate>
        <dc:creator>Christoph Jaeger &lt;cj@linux.com&gt;</dc:creator>
    </item>
<item>
        <title>c64d240d - dm: fix Kconfig indentation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#c64d240d</link>
        <description>dm: fix Kconfig indentationSince DM_DEBUG_BLOCK_STACK_TRACING is a DM_PERSISTENT_DATA config optionmove it from drivers/md/Kconfig to drivers/md/persistent-data/Kconfig.Doing so fixes indentation for other DM config options.Signed-off-by: Mike Snitzer &lt;snitzer@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Mon, 03 Mar 2014 15:57:56 +0000</pubDate>
        <dc:creator>Mike Snitzer &lt;snitzer@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>88ae4c52 - dm persistent data: remove CONFIG_EXPERIMENTAL</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#88ae4c52</link>
        <description>dm persistent data: remove 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.Signed-off-by: Kees Cook &lt;keescook@chromium.org&gt;Signed-off-by: Alasdair G Kergon &lt;agk@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Fri, 01 Mar 2013 22:45:46 +0000</pubDate>
        <dc:creator>Kees Cook &lt;keescook@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>3241b1d3 - dm: add persistent data library</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/md/persistent-data/Kconfig#3241b1d3</link>
        <description>dm: add persistent data libraryThe persistent-data library offers a re-usable framework for the storageand management of on-disk metadata in device-mapper targets.It&apos;s used by the thin-provisioning target in the next patch and in anupcoming hierarchical storage target.For further information, please readDocumentation/device-mapper/persistent-data.txtSigned-off-by: Joe Thornber &lt;thornber@redhat.com&gt;Signed-off-by: Mike Snitzer &lt;snitzer@redhat.com&gt;Signed-off-by: Alasdair G Kergon &lt;agk@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/md/persistent-data/Kconfig</description>
        <pubDate>Mon, 31 Oct 2011 20:19:11 +0000</pubDate>
        <dc:creator>Joe Thornber &lt;thornber@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
