<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>cbe287fd65f1a51eb1720e93ceca7ee8d8b011bc - ntfs: remove unsupported quota handling</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#cbe287fd65f1a51eb1720e93ceca7ee8d8b011bc</link>
        <description>ntfs: remove unsupported quota handlingThe ntfs driver does not implement quota accounting.  It createsnew inodes with the NTFS 1.2 $STANDARD_INFORMATION layout and doesnot maintain the NTFS 3.x owner_id/quota_charged fields or the$Quota usage records that Windows would need for meaningful quotaaccounting.The only runtime quota path left in the driver is the remount-rwcode that tries to mark $Quota/$Q out of date, plus the mount-timecode that loads $Quota and its $Q index solely to support thatmarker.Since the driver does not maintain the per-file quota metadata,setting QUOTA_FLAG_OUT_OF_DATE does not make the quota statemeaningful, and failures in this unsupported path can unnecessarilyblock remount-rw or force a mount read-only.Remove the quota marker, the $Quota/$Q loading state, and theunused quota volume flag.  Keep the on-disk quota layout definitionsin layout.h so the documented NTFS structures remain available.Suggested-by: Hyunchul Lee &lt;hyc.lee@gmail.com&gt;Link: https://lore.kernel.org/all/CANFS6bYTzioqZjYt=51Kb9RdR3MKXaez_fh_WCLoym093VxFmg@mail.gmail.com/Signed-off-by: DaeMyung Kang &lt;charsyam@gmail.com&gt;Reviewed-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/Makefile</description>
        <pubDate>Sun, 17 May 2026 05:44:47 +0200</pubDate>
        <dc:creator>DaeMyung Kang &lt;charsyam@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>47503f989736d6c4c9f8bfca1c28d267473ccd4b - ntfs: add Kconfig and Makefile</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#47503f989736d6c4c9f8bfca1c28d267473ccd4b</link>
        <description>ntfs: add Kconfig and MakefileIntroduce Kconfig and Makefile for remade ntfs.And this patch make ntfs and ntfs3 mutually exclusive so only one can bebuilt-in(y), while both can still be built as modules(m).Reviewed-by: Amir Goldstein &lt;amir73il@gmail.com&gt;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/Makefile</description>
        <pubDate>Mon, 02 Feb 2026 08:00:57 +0100</pubDate>
        <dc:creator>Namjae Jeon &lt;linkinjeon@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>7ffa8f3d30236e0ab897c30bdb01224ff1fe1c89 - fs: Remove NTFS classic</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#7ffa8f3d30236e0ab897c30bdb01224ff1fe1c89</link>
        <description>fs: Remove NTFS classicThe replacement, NTFS3, was merged over two years ago.  It is now time toremove the original from the tree as it is the last user of several APIs,and it is not worth changing.Signed-off-by: Matthew Wilcox (Oracle) &lt;willy@infradead.org&gt;Link: https://lore.kernel.org/r/20240115072025.2071931-1-willy@infradead.orgAcked-by: Namjae Jeon &lt;linkinjeon@kernel.org&gt;Acked-by: Dave Chinner &lt;david@fromorbit.com&gt;Cc: Anton Altaparmakov &lt;anton@tuxera.com&gt;Cc: Namjae Jeon &lt;linkinjeon@kernel.org&gt;Signed-off-by: Christian Brauner &lt;brauner@kernel.org&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Mon, 15 Jan 2024 08:20:25 +0100</pubDate>
        <dc:creator>Matthew Wilcox (Oracle) &lt;willy@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>b24413180f5600bcb3bb70fbed5cf186b60864bd - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#b24413180f5600bcb3bb70fbed5cf186b60864bd</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 15:07:57 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>a632f5593041305c8adbf4727bc1ccdf0b45178b - NTFS: Version 2.1.32 - Update file write from aio_write to write_iter.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#a632f5593041305c8adbf4727bc1ccdf0b45178b</link>
        <description>NTFS: Version 2.1.32 - Update file write from aio_write to write_iter.Signed-off-by: Anton Altaparmakov &lt;anton@tuxera.com&gt;Signed-off-by: Al Viro &lt;viro@zeniv.linux.org.uk&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Wed, 11 Mar 2015 15:43:32 +0100</pubDate>
        <dc:creator>Anton Altaparmakov &lt;anton@tuxera.com&gt;</dc:creator>
    </item>
<item>
        <title>3569b70c4077db2b70a401c23ac597faf0d1b424 - NTFS: Bump version to 2.1.31.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#3569b70c4077db2b70a401c23ac597faf0d1b424</link>
        <description>NTFS: Bump version to 2.1.31.Signed-off-by: Anton Altaparmakov &lt;anton@tuxera.com&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Thu, 16 Oct 2014 13:53:35 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;anton@tuxera.com&gt;</dc:creator>
    </item>
<item>
        <title>0ccd234ca04b09a156f8771af316ac9de2fa7312 - fs: change to new flag variable</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#0ccd234ca04b09a156f8771af316ac9de2fa7312</link>
        <description>fs: change to new flag variableReplace EXTRA_CFLAGS with ccflags-y. And change ntfs-objs to ntfs-yfor cleaner conditional inclusion.Signed-off-by: matt mooney &lt;mfm@muteddisk.com&gt;Acked-by: WANG Cong &lt;xiyou.wangcong@gmail.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Fri, 14 Jan 2011 15:12:35 +0100</pubDate>
        <dc:creator>matt mooney &lt;mfm@muteddisk.com&gt;</dc:creator>
    </item>
<item>
        <title>2818ef50c4dc103ce52e12d14ce2dfbde5268120 - NTFS: writev() fix and maintenance/contact details update</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#2818ef50c4dc103ce52e12d14ce2dfbde5268120</link>
        <description>NTFS: writev() fix and maintenance/contact details updateFix writev() to not keep writing the first segment over and over againinstead of moving onto subsequent segments and update the NTFS entry inMAINTAINERS to reflect that Tuxera Inc. now supports the NTFS driver.Signed-off-by: Anton Altaparmakov &lt;anton@tuxera.com&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Wed, 12 Jan 2011 11:34:35 +0100</pubDate>
        <dc:creator>Anton Altaparmakov &lt;anton@tuxera.com&gt;</dc:creator>
    </item>
<item>
        <title>bfab36e81611e60573b84eb4e4b4c8d8545b2320 - NTFS: Fix a mount time deadlock.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#bfab36e81611e60573b84eb4e4b4c8d8545b2320</link>
        <description>NTFS: Fix a mount time deadlock.Big thanks go to Mathias Kolehmainen for reporting the bug, providingdebug output and testing the patches I sent him to get it working.The fix was to stop calling ntfs_attr_set() at mount time as that causesbalance_dirty_pages_ratelimited() to be called which on systems withlittle memory actually tries to go and balance the dirty pages which triesto take the s_umount semaphore but because we are still in fill_super()across which the VFS holds s_umount for writing this results in adeadlock.We now do the dirty work by hand by submitting individual buffers.  Thishas the annoying &quot;feature&quot; that mounting can take a few seconds if thejournal is large as we have clear it all.  One day someone should improveon this by deferring the journal clearing to a helper kernel thread so itcan be done in the background but I don&apos;t have time for this at the momentand the current solution works fine so I am leaving it like this for now.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Fri, 12 Oct 2007 10:37:15 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cam.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>bd62b23cbcc691cc8faa6f4028783f60957b6508 - NTFS: Forgot to bump version number in makefile to 2.1.28...</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#bd62b23cbcc691cc8faa6f4028783f60957b6508</link>
        <description>NTFS: Forgot to bump version number in makefile to 2.1.28...Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Thu, 18 Jan 2007 11:28:18 +0100</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>67b1dfe77a2eb2a88b37cd77b8979cbdb7695bd6 - NTFS: Fix an (innocent) off-by-one error in the runlist code.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#67b1dfe77a2eb2a88b37cd77b8979cbdb7695bd6</link>
        <description>NTFS: Fix an (innocent) off-by-one error in the runlist code.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Thu, 23 Mar 2006 15:57:43 +0100</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>1cf3109ffb26a6ea572fd02436bd10458b4b2187 - NTFS: Do more detailed reporting of why we cannot mount read-write by</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#1cf3109ffb26a6ea572fd02436bd10458b4b2187</link>
        <description>NTFS: Do more detailed reporting of why we cannot mount read-write by     special casing the VOLUME_MODIFIED_BY_CHKDSK flag.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Fri, 24 Feb 2006 11:48:14 +0100</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>98b270362bb9ea6629732e7f5b65b8a6ce4743c7 - NTFS: The big ntfs write(2) rewrite has arrived.  We now implement our own</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#98b270362bb9ea6629732e7f5b65b8a6ce4743c7</link>
        <description>NTFS: The big ntfs write(2) rewrite has arrived.  We now implement our own      file operations -&gt;write(), -&gt;aio_write(), and -&gt;writev() for regular      files.  This replaces the old use of generic_file_write(), et al and      the address space operations -&gt;prepare_write and -&gt;commit_write.      This means that both sparse and non-sparse (unencrypted and      uncompressed) files can now be extended using the normal write(2)      code path.  There are two limitations at present and these are that      we never create sparse files and that we only have limited support      for highly fragmented files, i.e. ones whose data attribute is split      across multiple extents.   When such a case is encountered,      EOPNOTSUPP is returned.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Tue, 11 Oct 2005 16:40:40 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>fd9d63678d42ffd4312815ac720a12920642eb36 - NTFS: Change ntfs_map_runlist_nolock() to also take an optional attribute</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#fd9d63678d42ffd4312815ac720a12920642eb36</link>
        <description>NTFS: Change ntfs_map_runlist_nolock() to also take an optional attribute      search context.  This allows calling it with the mft record mapped.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Tue, 04 Oct 2005 14:44:48 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>5a8c0cc32bb6e029cd9c36f655c6b0955b0d9967 - NTFS: More $LogFile handling fixes: when chkdsk has been run, it can leave the</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#5a8c0cc32bb6e029cd9c36f655c6b0955b0d9967</link>
        <description>NTFS: More $LogFile handling fixes: when chkdsk has been run, it can leave the      restart pages in the journal without multi sector transfer protection      fixups (i.e. the update sequence array is empty and in fact does not      exist).Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Mon, 26 Sep 2005 11:48:54 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>715dc636b64b57aee7aee7e8b5bf4f5267a6df48 - NTFS: Change ntfs_cluster_free() to require a write locked runlist on entry</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#715dc636b64b57aee7aee7e8b5bf4f5267a6df48</link>
        <description>NTFS: Change ntfs_cluster_free() to require a write locked runlist on entry      since we otherwise get into a lock reversal deadlock if a read locked      runlist is passed in. In the process also change it to take an ntfs      inode instead of a vfs inode as parameter.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Fri, 23 Sep 2005 12:24:28 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>7d333d6c739a5cd6d60102ea1a9940cbbb0546ec - NTFS: 2.1.24 release and some minor final fixes.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#7d333d6c739a5cd6d60102ea1a9940cbbb0546ec</link>
        <description>NTFS: 2.1.24 release and some minor final fixes.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Fri, 09 Sep 2005 00:01:16 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>e7a1033b946f4f2622f2b338ab107f559aad542c - NTFS: Support more clean journal ($LogFile) states.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#e7a1033b946f4f2622f2b338ab107f559aad542c</link>
        <description>NTFS: Support more clean journal ($LogFile) states.      - Support journals ($LogFile) which have been modified by chkdsk.  This        means users can boot into Windows after we marked the volume dirty.        The Windows boot will run chkdsk and then reboot.  The user can then        immediately boot into Linux rather than having to do a full Windows        boot first before rebooting into Linux and we will recognize such a        journal and empty it as it is clean by definition.      - Support journals ($LogFile) with only one restart page as well as        journals with two different restart pages.  We sanity check both and        either use the only sane one or the more recent one of the two in the        case that both are valid.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Thu, 08 Sep 2005 17:12:28 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>af859a42d798f047fbfe198ed315a942662c39d2 - NTFS: Prepare for 2.1.23 release: Update documentation and bump version.</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#af859a42d798f047fbfe198ed315a942662c39d2</link>
        <description>NTFS: Prepare for 2.1.23 release: Update documentation and bump version.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Sat, 25 Jun 2005 22:07:27 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
<item>
        <title>3f2faef00c6af17542ea8672ed7d09367222b2d0 - NTFS: Stamp the transaction log ($UsnJrnl), aka user space journal, if it</title>
        <link>http://kernelsources.org:8080/source/history/linux/fs/ntfs/Makefile#3f2faef00c6af17542ea8672ed7d09367222b2d0</link>
        <description>NTFS: Stamp the transaction log ($UsnJrnl), aka user space journal, if it      is active on the volume and we are mounting read-write or remounting      from read-only to read-write.Signed-off-by: Anton Altaparmakov &lt;aia21@cantab.net&gt;

            List of files:
            /linux/fs/ntfs/Makefile</description>
        <pubDate>Sat, 25 Jun 2005 16:28:56 +0200</pubDate>
        <dc:creator>Anton Altaparmakov &lt;aia21@cantab.net&gt;</dc:creator>
    </item>
</channel>
</rss>
