<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in runlist.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>cdd4dc3aebeab43a72ce0bc2b5bab6f0a80b97a5 - Merge tag &apos;ntfs-for-7.1-rc1-v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/ntfs</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#cdd4dc3aebeab43a72ce0bc2b5bab6f0a80b97a5</link>
        <description>Merge tag &apos;ntfs-for-7.1-rc1-v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/ntfsPull ntfs resurrection from Namjae Jeon: &quot;Ever since Kari Argillander&#8217;s 2022 report [1] regarding the state of  the ntfs3 driver, I have spent the last 4 years working to provide  full write support and current trends (iomap, no buffer head, folio),  enhanced performance, stable maintenance, utility support including  fsck for NTFS in Linux.  This new implementation is built upon the clean foundation of the  original read-only NTFS driver, adding:   - Write support:     Implemented full write support based on the classic read-only NTFS     driver. Added delayed allocation to improve write performance     through multi-cluster allocation and reduced fragmentation of the     cluster bitmap.   - iomap conversion:     Switched buffered IO (reads/writes), direct IO, file extent     mapping, readpages, and writepages to use iomap.   - Remove buffer_head:     Completely removed buffer_head usage by converting to folios. As a     result, the dependency on CONFIG_BUFFER_HEAD has been removed from     Kconfig.   - Stability improvements:     The new ntfs driver passes 326 xfstests, compared to 273 for ntfs3.     All tests passed by ntfs3 are a complete subset of the tests passed     by this implementation. Added support for fallocate, idmapped     mounts, permissions, and more.  xfstests Results report:     Total tests run: 787     Passed         : 326     Failed         : 38     Skipped        : 423  Failed tests breakdown:    - 34 tests require metadata journaling    - 4 other tests:         094: No unwritten extent concept in NTFS on-disk format         563: cgroup v2 aware writeback accounting not supported         631: RENAME_WHITEOUT support required         787: NFS delegation test&quot;Link: https://lore.kernel.org/all/da20d32b-5185-f40b-48b8-2986922d8b25@stargateuniverse.net/ [1][ Let&apos;s see if this undead filesystem ends up being of the &quot;Easter  miracle&quot; kind, or the &quot;Nosferatu of filesystems&quot; kind... ]* tag &apos;ntfs-for-7.1-rc1-v2&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/ntfs: (46 commits)  ntfs: remove redundant out-of-bound checks  ntfs: add bound checking to ntfs_external_attr_find  ntfs: add bound checking to ntfs_attr_find  ntfs: fix ignoring unreachable code warnings  ntfs: fix inconsistent indenting warnings  ntfs: fix variable dereferenced before check warnings  ntfs: prefer IS_ERR_OR_NULL() over manual NULL check  ntfs: harden ntfs_listxattr against EA entries  ntfs: harden ntfs_ea_lookup against malformed EA entries  ntfs: check $EA query-length in ntfs_ea_get  ntfs: validate WSL EA payload sizes  ntfs: fix WSL ea restore condition  ntfs: add missing newlines to pr_err() messages  ntfs: fix pointer/integer casting warnings  ntfs: use -&gt;mft_no instead of -&gt;i_ino in prints  ntfs: change mft_no type to u64  ntfs: select FS_IOMAP in Kconfig  ntfs: add MODULE_ALIAS_FS  ntfs: reduce stack usage in ntfs_write_mft_block()  ntfs: fix sysctl table registration and path  ...

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Sat, 18 Apr 2026 01:35:49 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4e59f8a1a82beaa49d7796648fc4dc538eff6485 - ntfs: fix variable dereferenced before check warnings</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#4e59f8a1a82beaa49d7796648fc4dc538eff6485</link>
        <description>ntfs: fix variable dereferenced before check warningsDetected by Smatch.lcnalloc.c:736 ntfs_cluster_alloc() error:  we previously assumed &apos;rl&apos; could be null (see line 719)inode.c:3275 ntfs_inode_close() warn:  variable dereferenced before check &apos;tmp_nis&apos; (see line 3255)attrib.c:4952 ntfs_attr_remove() warn:  variable dereferenced before check &apos;ni&apos; (see line 4951)dir.c:1035 ntfs_readdir() error:  we previously assumed &apos;private&apos; could be null (see line 850)Signed-off-by: Hyunchul Lee &lt;hyc.lee@gmail.com&gt;Signed-off-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 13 Mar 2026 00:59:07 +0100</pubDate>
        <dc:creator>Hyunchul Lee &lt;hyc.lee@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ea3566a3fa235cd0325b2bedf91ceec65073004b - ntfs: add missing newlines to pr_err() messages</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#ea3566a3fa235cd0325b2bedf91ceec65073004b</link>
        <description>ntfs: add missing newlines to pr_err() messagesThere is an inconsistent use of pr_err() statements in the current code.Many error messages are missing the \n termination, what results in themessages being printed with a delay, only after a next printk() line isprinted. It prevents relying on printk() to monitor the driver errors.This patch is modifying only text messages, no functional change.Signed-off-by: Woody Suwalski &lt;terraluna977@gmail.com&gt;Signed-off-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 10 Mar 2026 09:50:57 +0100</pubDate>
        <dc:creator>Woody Suwalski &lt;terraluna977@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>11ccc9107dc460de28af90fac1f42404d9802735 - ntfs: update runlist handling and cluster allocator</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#11ccc9107dc460de28af90fac1f42404d9802735</link>
        <description>ntfs: update runlist handling and cluster allocatorUpdates runlist handling and cluster allocation to supportcontiguous allocations and filesystem trimming.Improve the runlist API to handle allocation failures and introducesdiscard support.Acked-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Hyunchul Lee &lt;hyc.lee@gmail.com&gt;Signed-off-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 13 Feb 2026 02:44:35 +0100</pubDate>
        <dc:creator>Namjae Jeon &lt;linkinjeon@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1e9ea7e04472d4e5e12e58c881eaacfb3e49b669 - Revert &quot;fs: Remove NTFS classic&quot;</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#1e9ea7e04472d4e5e12e58c881eaacfb3e49b669</link>
        <description>Revert &quot;fs: Remove NTFS classic&quot;This reverts commit 7ffa8f3d30236e0ab897c30bdb01224ff1fe1c89.Reverts the removal of the classic read-only ntfs driver toserve as the base for a new read-write ntfs implementation.If we stack changes on top of the revert patch, It will significantlyreduce the diff size, making the review easier.This revert intentionally excludes the restoration of Kconfig andMakefile. The Kconfig and Makefile will be added back in the final patchof this series, enabling the driver only after all features andimprovements have been applied.Acked-by: Christoph Hellwig &lt;hch@lst.de&gt;Signed-off-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 30 Dec 2025 06:24:16 +0100</pubDate>
        <dc:creator>Namjae Jeon &lt;linkinjeon@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.4 merge window.

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 02 May 2023 00:20:08 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>cdc780f044a803aff8845b949f800f0f3d095d5f - Merge branch &apos;for-6.4/amd-sfh&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#cdc780f044a803aff8845b949f800f0f3d095d5f</link>
        <description>Merge branch &apos;for-6.4/amd-sfh&apos; into for-linus- assorted functional fixes for amd-sfh driver (Basavaraj Natikar)

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Wed, 26 Apr 2023 22:52:34 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>ea68a3e9d14e9e0bf017d178fb4bd53b6deb1482 - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#ea68a3e9d14e9e0bf017d178fb4bd53b6deb1482</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextNeed to pull in commit from drm-next (earlier in drm-intel-next):1eca0778f4b3 (&quot;drm/i915: add struct i915_dsm to wrap dsm members together&quot;)In order to merge following patch to drm-intel-gt-next:https://patchwork.freedesktop.org/patch/530942/?series=114925&amp;rev=6Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 11 Apr 2023 14:43:45 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cecdd52a3dd312564f81a39df08378b7b39a2654 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#cecdd52a3dd312564f81a39df08378b7b39a2654</link>
        <description>Merge drm/drm-next into drm-intel-nextCatch up with 6.3-rc cycle...Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 28 Mar 2023 16:30:57 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>e752ab11dcb48353727ea26eefd740155e028865 - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#e752ab11dcb48353727ea26eefd740155e028865</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-nextMerge drm-next into msm-next to pick up external clk and PM dependenciesfor improved a6xx GPU reset sequence.Signed-off-by: Rob Clark &lt;robdclark@chromium.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Mon, 20 Mar 2023 18:31:25 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>d26a3a6ce7e02f9c056ad992bcd9624735022337 - Merge tag &apos;v6.3-rc2&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#d26a3a6ce7e02f9c056ad992bcd9624735022337</link>
        <description>Merge tag &apos;v6.3-rc2&apos; into nextMerge with mainline to get of_property_present() and other newer APIs.

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 17 Mar 2023 12:01:30 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b3c9a04135bdbd3aabd5e9534bad0fe6df505f8a - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#b3c9a04135bdbd3aabd5e9534bad0fe6df505f8a</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesBackmerging to get latest upstream.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Mon, 13 Mar 2023 10:14:05 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>a1eccc574f977bd21a4ec8ac54bd73a2756bd281 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#a1eccc574f977bd21a4ec8ac54bd73a2756bd281</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get v6.3-rc1 and sync with the other DRM trees.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Mon, 13 Mar 2023 09:27:50 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>b8fa3e3833c14151a47ebebbc5427dcfe94bb407 - Merge remote-tracking branch &apos;acme/perf-tools&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#b8fa3e3833c14151a47ebebbc5427dcfe94bb407</link>
        <description>Merge remote-tracking branch &apos;acme/perf-tools&apos; into perf-tools-nextTo pick up perf-tools fixes just merged upstream.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 10 Mar 2023 22:43:17 +0100</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d2980d8d826554fa6981d621e569a453787472f8 - Merge tag &apos;mm-nonmm-stable-2023-02-20-15-29&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#d2980d8d826554fa6981d621e569a453787472f8</link>
        <description>Merge tag &apos;mm-nonmm-stable-2023-02-20-15-29&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mmPull non-MM updates from Andrew Morton: &quot;There is no particular theme here - mainly quick hits all over the  tree.  Most notable is a set of zlib changes from Mikhail Zaslonko which  enhances and fixes zlib&apos;s use of S390 hardware support: &apos;lib/zlib: Set  of s390 DFLTCC related patches for kernel zlib&apos;&quot;* tag &apos;mm-nonmm-stable-2023-02-20-15-29&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm: (55 commits)  Update CREDITS file entry for Jesper Juhl  sparc: allow PM configs for sparc32 COMPILE_TEST  hung_task: print message when hung_task_warnings gets down to zero.  arch/Kconfig: fix indentation  scripts/tags.sh: fix the Kconfig tags generation when using latest ctags  nilfs2: prevent WARNING in nilfs_dat_commit_end()  lib/zlib: remove redundation assignement of avail_in dfltcc_gdht()  lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default  lib/zlib: DFLTCC always switch to software inflate for Z_PACKET_FLUSH option  lib/zlib: DFLTCC support inflate with small window  lib/zlib: Split deflate and inflate states for DFLTCC  lib/zlib: DFLTCC not writing header bits when avail_out == 0  lib/zlib: fix DFLTCC ignoring flush modes when avail_in == 0  lib/zlib: fix DFLTCC not flushing EOBS when creating raw streams  lib/zlib: implement switching between DFLTCC and software  lib/zlib: adjust offset calculation for dfltcc_state  nilfs2: replace WARN_ONs for invalid DAT metadata block requests  scripts/spelling.txt: add &quot;exsits&quot; pattern and fix typo instances  fs: gracefully handle -&gt;get_block not mapping bh in __mpage_writepage  cramfs: Kconfig: fix spelling &amp; punctuation  ...

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 24 Feb 2023 02:55:40 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>aa0b42b7b4b54f0341a1ef5c44360e0e386951f1 - ntfs: fix multiple kernel-doc warnings</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#aa0b42b7b4b54f0341a1ef5c44360e0e386951f1</link>
        <description>ntfs: fix multiple kernel-doc warningsFix many W=1 kernel-doc warnings in fs/ntfs/:fs/ntfs/aops.c:30: warning: Incorrect use of kernel-doc format:  * ntfs_end_buffer_async_read - async io completion for reading attributesfs/ntfs/aops.c:46: warning: expecting prototype for aops.c(). Prototype was for ntfs_end_buffer_async_read() insteadfs/ntfs/aops.c:1655: warning: cannot understand function prototype: &apos;const struct address_space_operations ntfs_normal_aops = &apos;fs/ntfs/aops.c:1670: warning: cannot understand function prototype: &apos;const struct address_space_operations ntfs_compressed_aops = &apos;fs/ntfs/aops.c:1685: warning: cannot understand function prototype: &apos;const struct address_space_operations ntfs_mst_aops = &apos;fs/ntfs/compress.c:22: warning: Incorrect use of kernel-doc format:  * ntfs_compression_constants - enum of constants used in the compression codefs/ntfs/compress.c:24: warning: cannot understand function prototype: &apos;typedef enum &apos;fs/ntfs/compress.c:47: warning: cannot understand function prototype: &apos;u8 *ntfs_compression_buffer; &apos;fs/ntfs/compress.c:52: warning: expecting prototype for ntfs_cb_lock(). Prototype was for DEFINE_SPINLOCK() insteadfs/ntfs/dir.c:21: warning: Incorrect use of kernel-doc format:  * The little endian Unicode string $I30 as a global constant.fs/ntfs/dir.c:23: warning: cannot understand function prototype: &apos;ntfschar I30[5] = &apos;fs/ntfs/inode.c:31: warning: Incorrect use of kernel-doc format:  * ntfs_test_inode - compare two (possibly fake) inodes for equalityfs/ntfs/inode.c:47: warning: expecting prototype for inode.c(). Prototype was for ntfs_test_inode() insteadfs/ntfs/inode.c:2956: warning: expecting prototype for ntfs_write_inode(). Prototype was for __ntfs_write_inode() insteadfs/ntfs/mft.c:24: warning: expecting prototype for mft.c - NTFS kernel mft record operations. Part of the Linux(). Prototype was for MAX_BHS() insteadfs/ntfs/namei.c:263: warning: This comment starts with &apos;/**&apos;, but isn&apos;t a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Inode operations for directories.fs/ntfs/namei.c:368: warning: This comment starts with &apos;/**&apos;, but isn&apos;t a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * Export operations allowing NFS exporting of mounted NTFS partitions.fs/ntfs/runlist.c:16: warning: Incorrect use of kernel-doc format:  * ntfs_rl_mm - runlist memmovefs/ntfs/runlist.c:22: warning: expecting prototype for runlist.c - NTFS runlist handling code.  Part of the Linux(). Prototype was for ntfs_rl_mm() insteadfs/ntfs/super.c:61: warning: missing initial short description on line: * simple_getbool -fs/ntfs/super.c:2661: warning: This comment starts with &apos;/**&apos;, but isn&apos;t a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst * The complete super operations.Link: https://lkml.kernel.org/r/20230109010041.21442-1-rdunlap@infradead.orgSigned-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Anton Altaparmakov &lt;anton@tuxera.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Mon, 09 Jan 2023 02:00:41 +0100</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>b746a1a2860f4a918f32d10dc569115d282aaf2f - Merge branch &apos;for-5.5/core&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#b746a1a2860f4a918f32d10dc569115d282aaf2f</link>
        <description>Merge branch &apos;for-5.5/core&apos; into for-linus- hid_have_special_driver[] cleanup for LED devices (Heiner Kallweit)- HID parser improvements (Bla&#382; Hrastnik, Candle Sun)

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 29 Nov 2019 20:34:28 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>976e3645923bdd2fe7893aae33fd7a21098bfb28 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#976e3645923bdd2fe7893aae33fd7a21098bfb28</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 5.5 merge window.

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Mon, 25 Nov 2019 22:26:56 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9f4813b531a0b8cc502fcfb142937fe4e9104d77 - Merge tag &apos;v5.4-rc8&apos; into WIP.x86/mm, to pick up fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#9f4813b531a0b8cc502fcfb142937fe4e9104d77</link>
        <description>Merge tag &apos;v5.4-rc8&apos; into WIP.x86/mm, to pick up fixesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Tue, 19 Nov 2019 09:00:45 +0100</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ac94be498f84f7327533b62faca4c3da64434904 - Merge branch &apos;linus&apos; into x86/hyperv</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/runlist.c#ac94be498f84f7327533b62faca4c3da64434904</link>
        <description>Merge branch &apos;linus&apos; into x86/hypervPick up upstream fixes to avoid conflicts.

            List of files:
            /linux/fs/ntfs/runlist.c</description>
        <pubDate>Fri, 15 Nov 2019 10:30:50 +0100</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
