<?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>a24c8b51 - fs/Kconfig: Fix compile error for romfs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/romfs/Kconfig#a24c8b51</link>
        <description>fs/Kconfig: Fix compile error for romfsThere are some compile errors reported by kernel test robot:arm-linux-gnueabi-ld: fs/romfs/storage.o: in function `romfs_dev_read&apos;:storage.c:(.text+0x64): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x9c): undefined reference to `__bread_gfp&apos;arm-linux-gnueabi-ld: fs/romfs/storage.o: in function `romfs_dev_strnlen&apos;:storage.c:(.text+0x128): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x16c): undefined reference to `__bread_gfp&apos;arm-linux-gnueabi-ld: fs/romfs/storage.o: in function `romfs_dev_strcmp&apos;:storage.c:(.text+0x22c): undefined reference to `__bread_gfp&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x27c): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x2a8): undefined reference to `__bread_gfp&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x2bc): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x2d4): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x2f4): undefined reference to `__brelse&apos;arm-linux-gnueabi-ld: storage.c:(.text+0x304): undefined reference to `__brelse&apos;The reason for the problem is that the commit&quot;925c86a19bac&quot; (&quot;fs: add CONFIG_BUFFER_HEAD&quot;) has added a new config&quot;CONFIG_BUFFER_HEAD&quot; that controls building the buffer_head code, andromfs needs to use the buffer_head API, but no corresponding config hasbeed added. Select the config &quot;CONFIG_BUFFER_HEAD&quot; in romfs Kconfig toresolve the problem.Fixes: 925c86a19bac (&quot;fs: add CONFIG_BUFFER_HEAD&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202308031810.pQzGmR1v-lkp@intel.com/Reviewed-by: Luis Chamberlain &lt;mcgrof@kernel.org&gt;Tested-by: Li Zetao &lt;lizetao1@huawei.com&gt;Signed-off-by: Li Zetao &lt;lizetao1@huawei.com&gt;[axboe: fold in Christoph&apos;s incremental]Signed-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux-6.15/fs/romfs/Kconfig</description>
        <pubDate>Thu, 03 Aug 2023 13:07:38 +0000</pubDate>
        <dc:creator>Li Zetao &lt;lizetao1@huawei.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/fs/romfs/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/fs/romfs/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>0c1bc6b8 - docs: filesystems: fix renamed references</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/romfs/Kconfig#0c1bc6b8</link>
        <description>docs: filesystems: fix renamed referencesSome filesystem references got broken by a previous patchseries I submitted. Address those.Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Acked-by: David Sterba &lt;dsterba@suse.com&gt; # fs/affs/KconfigLink: https://lore.kernel.org/r/57318c53008dbda7f6f4a5a9e5787f4d37e8565a.1586881715.git.mchehab+huawei@kernel.orgSigned-off-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/fs/romfs/Kconfig</description>
        <pubDate>Tue, 14 Apr 2020 16:48:37 +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/fs/romfs/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/fs/romfs/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>f52fd5b7 - NOMMU: Fix the RomFS Kconfig to ensure at least one backing store is selected</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/romfs/Kconfig#f52fd5b7</link>
        <description>NOMMU: Fix the RomFS Kconfig to ensure at least one backing store is selectedFix the configuration of the RomFS to make sure that at least one backing store method is always selected.  This is done by rendering it down to a choice item that selects between Block, MTD and both.This also works correctly in the case that CONFIG_MTD=m: MTD cannot be selected as a backing store unless CONFIG_ROMFS_FS is also &apos;m&apos;.Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;

            List of files:
            /linux-6.15/fs/romfs/Kconfig</description>
        <pubDate>Fri, 20 Feb 2009 12:31:54 +0000</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>da4458bd - NOMMU: Make it possible for RomFS to use MTD devices directly</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/romfs/Kconfig#da4458bd</link>
        <description>NOMMU: Make it possible for RomFS to use MTD devices directlyChange RomFS so that it can use MTD devices directly - without the intercessionof the block layer - as well as using block devices.This permits RomFS: (1) to use the MTD direct mapping facility available under NOMMU conditions if     the underlying device is directly accessible by the CPU (including XIP); (2) and thus to be used when the block layer is disabled.RomFS can be configured with support just for MTD devices, just for Blockdevices or for both.  If RomFS is configured for both, then it will treatmtdblock device files as MTD backing stores, not block layer backing stores.I tested this using a CONFIG_MMU=n CONFIG_BLOCK=n kernel running on my FRVboard with a RomFS image installed on the mtdram test device.  I see my testprogram being run XIP:	# cat /proc/maps	...	c0c000b0-c0c01f8c r-xs 00000000 1f:00 144        /mnt/doshm	...GDB on the kernel can be used to show that these addresses are within theset-aside RAM space.Signed-off-by: David Howells &lt;dhowells@redhat.com&gt;Tested-by: Bernd Schmidt &lt;bernd.schmidt@analog.com&gt;Signed-off-by: David Woodhouse &lt;David.Woodhouse@intel.com&gt;

            List of files:
            /linux-6.15/fs/romfs/Kconfig</description>
        <pubDate>Thu, 12 Feb 2009 10:40:10 +0000</pubDate>
        <dc:creator>David Howells &lt;dhowells@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>41810246 - fs/Kconfig: move romfs out</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/romfs/Kconfig#41810246</link>
        <description>fs/Kconfig: move romfs outSigned-off-by: Alexey Dobriyan &lt;adobriyan@gmail.com&gt;

            List of files:
            /linux-6.15/fs/romfs/Kconfig</description>
        <pubDate>Thu, 22 Jan 2009 08:03:34 +0000</pubDate>
        <dc:creator>Alexey Dobriyan &lt;adobriyan@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
