<?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>925c86a1 - fs: add CONFIG_BUFFER_HEAD</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#925c86a1</link>
        <description>fs: add CONFIG_BUFFER_HEADAdd a new config option that controls building the buffer_head code, andselect it from all file systems and stacking drivers that need it.For the block device nodes and alternative iomap based buffered I/O pathis provided when buffer_head support is not enabled, and iomap needs aa small tweak to define the IOMAP_F_BUFFER_HEAD flag to 0 to not callinto the buffer_head code when it doesn&apos;t exist.Otherwise this is just Kconfig and ifdef changes.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Luis Chamberlain &lt;mcgrof@kernel.org&gt;Reviewed-by: Johannes Thumshirn &lt;johannes.thumshirn@wdc.com&gt;Link: https://lore.kernel.org/r/20230801172201.1923299-7-hch@lst.deSigned-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Tue, 01 Aug 2023 17:22:01 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>9636e650 - fs: build the legacy direct I/O code conditionally</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#9636e650</link>
        <description>fs: build the legacy direct I/O code conditionallyAdd a new LEGACY_DIRECT_IO config symbol that is only selected by thefile systems that still use the legacy blockdev_direct_IO code, so thatkernels without support for those file systems don&apos;t need to build thecode.Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Reviewed-by: Jan Kara &lt;jack@suse.cz&gt;Reviewed-by: Eric Biggers &lt;ebiggers@google.com&gt;Link: https://lore.kernel.org/r/20230125065839.191256-3-hch@lst.deSigned-off-by: Jens Axboe &lt;axboe@kernel.dk&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Wed, 25 Jan 2023 06:58:39 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>b0d4adaf - fat: Add KUnit tests for checksums and timestamps</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#b0d4adaf</link>
        <description>fat: Add KUnit tests for checksums and timestampsAdd some basic sanity-check tests for the fat_checksum() function andthe fat_time_unix2fat() and fat_time_fat2unix() functions. These unittests verify these functions return correct output for a number of testinputs.These tests were inspired by -- and serve a similar purpose to -- thetimestamp parsing KUnit tests in ext4[1].Note that, unlike fat_time_unix2fat, fat_time_fat2unix wasn&apos;t previouslyexported, so this patch exports it as well. This is required for thecase where we&apos;re building the fat and fat_test as modules.Fixed minor checkpatch coding style errors and typos in commit log:Shuah Khan &lt;skhan@linuxfoundation.org&gt;[1]:https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/fs/ext4/inode-test.cSigned-off-by: David Gow &lt;davidgow@google.com&gt;Acked-by: OGAWA Hirofumi &lt;hirofumi@mail.parknet.co.jp&gt;Reviewed-by: Brendan Higgins &lt;brendanhiggins@google.com&gt;Tested-by: Daniel Latypov &lt;dlatypov@google.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Fri, 16 Apr 2021 06:56:23 +0000</pubDate>
        <dc:creator>David Gow &lt;davidgow@google.com&gt;</dc:creator>
    </item>
<item>
        <title>4ecfed61 - VFAT/FAT/MSDOS FILESYSTEM: replace HTTP links with HTTPS ones</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#4ecfed61</link>
        <description>VFAT/FAT/MSDOS FILESYSTEM: 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 `xmlns`:        For each link, `http://[^# 	]*(?:\w|/)`:	  If neither `gnu\.org/license`, nor `mozilla\.org/MPL`:            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: Andrew Morton &lt;akpm@linux-foundation.org&gt;Acked-by: OGAWA Hirofumi &lt;hirofumi@mail.parknet.co.jp&gt;Link: http://lkml.kernel.org/r/20200708200409.22293-1-grandmaster@al2klimov.deSigned-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Wed, 12 Aug 2020 01:35:59 +0000</pubDate>
        <dc:creator>Alexander A. Klimov &lt;grandmaster@al2klimov.de&gt;</dc:creator>
    </item>
<item>
        <title>72ef5e52 - docs: fix broken references to text files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#72ef5e52</link>
        <description>docs: fix broken references to text filesSeveral references got broken due to txt to ReST conversion.Several of them can be automatically fixed with:	scripts/documentation-file-ref-check --fixReviewed-by: Mathieu Poirier &lt;mathieu.poirier@linaro.org&gt; # hwtracing/coresight/KconfigReviewed-by: Paul E. McKenney &lt;paulmck@kernel.org&gt; # memory-barrier.txtAcked-by: Alex Shi &lt;alex.shi@linux.alibaba.com&gt; # translations/zh_CNAcked-by: Federico Vaga &lt;federico.vaga@vaga.pv.it&gt; # translations/it_ITAcked-by: Marc Zyngier &lt;maz@kernel.org&gt; # kvm/arm64Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+huawei@kernel.org&gt;Link: https://lore.kernel.org/r/6f919ddb83a33b5f2a63b6b5f0575737bb2b36aa.1586881715.git.mchehab+huawei@kernel.orgSigned-off-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Tue, 14 Apr 2020 16:48:35 +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/fat/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/fat/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>38739380 - fat: add config option to set UTF-8 mount option by default</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#38739380</link>
        <description>fat: add config option to set UTF-8 mount option by defaultFAT has long supported its own default file name encoding configsetting, separate from CONFIG_NLS_DEFAULT.However, if UTF-8 encoded file names are desired FAT character setshould not be set to utf8 since this would make file names casesensitive even if case insensitive matching is requested.  Instead,&quot;utf8&quot; mount options should be provided to enable UTF-8 file names inFAT file system.Unfortunately, there was no possibility to set the default value of thisoption so on UTF-8 system &quot;utf8&quot; mount option had to be added manuallyto most FAT mounts.This patch adds config option to set such default value.Signed-off-by: Maciej S. Szmigiero &lt;mail@maciej.szmigiero.name&gt;Acked-by: OGAWA Hirofumi &lt;hirofumi@mail.parknet.co.jp&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Tue, 22 Mar 2016 21:25:30 +0000</pubDate>
        <dc:creator>Maciej S. Szmigiero &lt;mail@maciej.szmigiero.name&gt;</dc:creator>
    </item>
<item>
        <title>d29a2e94 - vfat: Note the NLS requirement</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#d29a2e94</link>
        <description>vfat: Note the NLS requirementClose bug #4754. Stop people getting into a situation where they can&apos;tget their FAT filesystems to mount as they expect.Signed-off-by: Alan Cox &lt;alan@lxorguk.ukuu.org.uk&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/fs/fat/Kconfig</description>
        <pubDate>Fri, 17 Apr 2009 11:22:35 +0000</pubDate>
        <dc:creator>Alan Cox &lt;alan@lxorguk.ukuu.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>1c6ace01 - fs/Kconfig: move fat out</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/fs/fat/Kconfig#1c6ace01</link>
        <description>fs/Kconfig: move fat outSigned-off-by: Alexey Dobriyan &lt;adobriyan@gmail.com&gt;

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