<?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 attrib.h</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/attrib.h#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/attrib.h</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>40796051991d9dacadebbdbee11e0c851215c4c4 - ntfs: update in-memory, on-disk structures and headers</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#40796051991d9dacadebbdbee11e0c851215c4c4</link>
        <description>ntfs: update in-memory, on-disk structures and headersUpdate the NTFS filesystem driver&apos;s in-memory and on-disk structures:  - Introduce the  infrastructure and initial support for reparse    points and EA attribute.  - Refactor the core ntfs_inode and ntfs_volume structures to support    new features such as iomap.  - Remove the unnecessary types.h and endian.h headers.  - Reorganize the comments in headers for better readability, including    fixing warnings from checkpatch.pl.Reviewed-by: Christoph Hellwig &lt;hch@lst.de&gt;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/attrib.h</description>
        <pubDate>Fri, 13 Feb 2026 02:36:38 +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/attrib.h#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/attrib.h</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>58e16d792a6a8c6b750f637a4649967fcac853dc - Merge branch &apos;ti-sysc-fixes&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#58e16d792a6a8c6b750f637a4649967fcac853dc</link>
        <description>Merge branch &apos;ti-sysc-fixes&apos; into fixes

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Tue, 13 Aug 2019 12:40:10 +0200</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>c39f2d9db0fd81ea20bb5cce9b3f082ca63753e2 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#c39f2d9db0fd81ea20bb5cce9b3f082ca63753e2</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare second round of input updates for 5.3 merge window.

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Sat, 20 Jul 2019 06:07:56 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ecb41832bd2a7a3f8ac93527cec5e51e3827daed - Merge tag &apos;v5.2&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#ecb41832bd2a7a3f8ac93527cec5e51e3827daed</link>
        <description>Merge tag &apos;v5.2&apos; into nextSync up with mainline to resolve conflicts in iforce driver.

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 15 Jul 2019 18:42:32 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>74acee309fb2a434dce215d44014e6f8e06975ae - Merge branches &apos;for-5.2/fixes&apos;, &apos;for-5.3/doc&apos;, &apos;for-5.3/ish&apos;, &apos;for-5.3/logitech&apos; and &apos;for-5.3/wacom&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#74acee309fb2a434dce215d44014e6f8e06975ae</link>
        <description>Merge branches &apos;for-5.2/fixes&apos;, &apos;for-5.3/doc&apos;, &apos;for-5.3/ish&apos;, &apos;for-5.3/logitech&apos; and &apos;for-5.3/wacom&apos; into for-linus

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Wed, 10 Jul 2019 01:39:57 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>3c53c6255d598db7084c5c3d7553d7200e857818 - Merge tag &apos;asoc-v5.3&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#3c53c6255d598db7084c5c3d7553d7200e857818</link>
        <description>Merge tag &apos;asoc-v5.3&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Updates for v5.3This is a very big update, mainly thanks to Morimoto-san&apos;s refactoringwork and some fairly large new drivers. - Lots more work on moving towards a component based framework from   Morimoto-san. - Support for force disconnecting muxes from Jerome Brunet. - New drivers for Cirrus Logic CS47L35, CS47L85 and CS47L90, Conexant   CX2072X, Realtek RT1011 and RT1308.Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 08 Jul 2019 14:45:20 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>1d2af80d581d1bae81594e497cd57e345235b940 - Merge tag &apos;nand/for-5.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux into mtd/next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#1d2af80d581d1bae81594e497cd57e345235b940</link>
        <description>Merge tag &apos;nand/for-5.3&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux into mtd/nextNAND core changes:- use longest matching pattern in -&gt;exec_op() default parser- export NAND operation tracer- add flag to indicate panic_write in MTD- use kzalloc() instead of kmalloc() and memset()Raw NAND controller drivers changes:- brcmnand:  * fix BCH ECC layout for large page NAND parts  * fallback to detected ecc-strength, ecc-step-size  * when oops in progress use pio and interrupt polling  * code refactor code to introduce helper functions  * add support for v7.3 controller- FSMC:  * use nand_op_trace for operation tracing- GPMI:  * move all driver code into single file  * various cleanups (including dmaengine changes)  * use runtime PM to manage clocks  * implement exec_op- MTK:  * correct low level time calculation of r/w cycle  * improve data sampling timing for read cycle  * add validity check for CE# pin setting  * fix wrongly assigned OOB buffer pointer issue  * re-license MTK NAND driver as Dual MIT/GPL- STM32:  * manage the get_irq error case  * increase DMA completion timeoutsRaw NAND chips drivers changes:- Macronix: add read-retry supportOnenand driver changes:- add support for 8Gb datasize chips- avoid fall-through warningsSPI-NAND changes:- define macros for page-read ops with three-byte addresses- add support for two-byte device IDs and then for GigaDevice  GD5F1GQ4UFxxG- add initial support for Paragon PN26G0xA- handle the case where the last page read has bitflips

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Sat, 06 Jul 2019 22:51:56 +0200</pubDate>
        <dc:creator>Richard Weinberger &lt;richard@nod.at&gt;</dc:creator>
    </item>
<item>
        <title>371bb62158d53c1fc33e2fb9b6aeb9522caf6cf4 - Merge tag &apos;v5.2-rc6&apos; into rdma.git for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#371bb62158d53c1fc33e2fb9b6aeb9522caf6cf4</link>
        <description>Merge tag &apos;v5.2-rc6&apos; into rdma.git for-nextFor dependencies in next patches.Resolve conflicts:- Use uverbs_get_cleared_udata() with new cq allocation flow- Continue to delete nes despite SPDX conflict- Resolve list appends in mlx5_command_str()- Use u16 for vport_rule stuff- Resolve list appends in struct ib_clientSigned-off-by: Jason Gunthorpe &lt;jgg@mellanox.com&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Sat, 29 Jun 2019 02:18:23 +0200</pubDate>
        <dc:creator>Jason Gunthorpe &lt;jgg@mellanox.com&gt;</dc:creator>
    </item>
<item>
        <title>53c8b29abe42e5601cfa0ea5962532f0cfdec8a0 - Merge tag &apos;v5.2-rc6&apos; into asoc-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#53c8b29abe42e5601cfa0ea5962532f0cfdec8a0</link>
        <description>Merge tag &apos;v5.2-rc6&apos; into asoc-5.3Linux 5.2-rc6

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Wed, 26 Jun 2019 13:39:34 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>355a47ae7ebcf9d605aa809b259d380422e81b8d - Merge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#355a47ae7ebcf9d605aa809b259d380422e81b8d</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-next-fixesSome fixes have been accidentally pushed to this, so I cannot fost-forward.Required to pull in the remove-fbcon-notifiers fixes.Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Wed, 26 Jun 2019 12:22:54 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2ee692802b8f6c54bd6499addd3d07c2833d84d8 - Merge tag &apos;topic/remove-fbcon-notifiers-2019-06-14-1&apos; of git://anongit.freedesktop.org/drm/drm-misc into fbdev-for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#2ee692802b8f6c54bd6499addd3d07c2833d84d8</link>
        <description>Merge tag &apos;topic/remove-fbcon-notifiers-2019-06-14-1&apos; of git://anongit.freedesktop.org/drm/drm-misc into fbdev-for-nexttopic/remove-fbcon-notifiers:- remove fbdev notifier usage for fbcon, as prep work to clean up the fbcon locking- assorted locking checks in vt/console code- assorted notifier and cleanups in fbdev and backlight codeOne trivial merge conflict fixed.Signed-off-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Wed, 19 Jun 2019 15:18:48 +0200</pubDate>
        <dc:creator>Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>e1d700f7c94e755106749411706a38e39a93404b - Merge tag &apos;v5.2-rc4&apos; into regulator-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#e1d700f7c94e755106749411706a38e39a93404b</link>
        <description>Merge tag &apos;v5.2-rc4&apos; into regulator-5.3Linux 5.2-rc4

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Tue, 18 Jun 2019 20:12:47 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7b347ad4938ddca1a22b983e36b9ef825a72d230 - Merge tag &apos;v5.2-rc5&apos; into x86/asm, to refresh the branch</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#7b347ad4938ddca1a22b983e36b9ef825a72d230</link>
        <description>Merge tag &apos;v5.2-rc5&apos; into x86/asm, to refresh the branchSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 17 Jun 2019 12:00:22 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>8afecfb0ec961e37e61b2d19c4fa71617a9482de - Merge tag &apos;v5.2-rc4&apos; into mauro</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#8afecfb0ec961e37e61b2d19c4fa71617a9482de</link>
        <description>Merge tag &apos;v5.2-rc4&apos; into mauroWe need to pick up post-rc1 changes to various document files so they don&apos;tget lost in Mauro&apos;s massive RST conversion push.

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Fri, 14 Jun 2019 22:18:53 +0200</pubDate>
        <dc:creator>Jonathan Corbet &lt;corbet@lwn.net&gt;</dc:creator>
    </item>
<item>
        <title>4343f61103cdb8ccd6f3d5dd7168f1176a1cee37 - Merge tag &apos;v5.2-rc4&apos; into spi-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#4343f61103cdb8ccd6f3d5dd7168f1176a1cee37</link>
        <description>Merge tag &apos;v5.2-rc4&apos; into spi-5.3Linux 5.2-rc4

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 10 Jun 2019 19:52:53 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0154ec71d597692a0d0682b19eac4b3adfb7f3dc - Merge 5.2-rc4 into char-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#0154ec71d597692a0d0682b19eac4b3adfb7f3dc</link>
        <description>Merge 5.2-rc4 into char-misc-nextWe want the char/misc driver fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Sun, 09 Jun 2019 09:11:21 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>888dc273ea4e7ca332a6f73d10dfc8f2b212c803 - Merge 5.2-rc3 into tty-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#888dc273ea4e7ca332a6f73d10dfc8f2b212c803</link>
        <description>Merge 5.2-rc3 into tty-nextWe want the tty/serial fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 03 Jun 2019 13:53:20 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f7b6a8b30cedaa64ba18d80f1fb3404274281639 - Merge tag &apos;v5.2-rc3&apos; into perf/core, to pick up fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/attrib.h#f7b6a8b30cedaa64ba18d80f1fb3404274281639</link>
        <description>Merge tag &apos;v5.2-rc3&apos; into perf/core, to pick up fixesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/attrib.h</description>
        <pubDate>Mon, 03 Jun 2019 11:56:35 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
