aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ntfs/ChangeLog
diff options
context:
space:
mode:
authorAnton Altaparmakov <aia21@cantab.net>2005-09-26 05:48:54 -0400
committerAnton Altaparmakov <aia21@cantab.net>2005-09-26 05:48:54 -0400
commit5a8c0cc32bb6e029cd9c36f655c6b0955b0d9967 (patch)
tree115b84c84ba7aa031c5db8f6e3988ba90f3849b9 /fs/ntfs/ChangeLog
parent838bf9675a3d1ede01408aa105357b9ab43faf1b (diff)
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 <aia21@cantab.net>
Diffstat (limited to 'fs/ntfs/ChangeLog')
-rw-r--r--fs/ntfs/ChangeLog18
1 files changed, 9 insertions, 9 deletions
diff --git a/fs/ntfs/ChangeLog b/fs/ntfs/ChangeLog
index 574896f27c36..83f3322765cd 100644
--- a/fs/ntfs/ChangeLog
+++ b/fs/ntfs/ChangeLog
@@ -22,14 +22,6 @@ ToDo/Notes:
22 - Enable the code for setting the NT4 compatibility flag when we start 22 - Enable the code for setting the NT4 compatibility flag when we start
23 making NTFS 1.2 specific modifications. 23 making NTFS 1.2 specific modifications.
24 24
252.1.25-WIP
26
27 - Fix sparse warnings that have crept in over time.
28 - Change ntfs_cluster_free() to require a write locked runlist on entry
29 since we otherwise get into a lock reversal deadlock if a read locked
30 runlist is passed in. In the process also change it to take an ntfs
31 inode instead of a vfs inode as parameter.
32
332.1.24 - Lots of bug fixes and support more clean journal states. 252.1.24 - Lots of bug fixes and support more clean journal states.
34 26
35 - Support journals ($LogFile) which have been modified by chkdsk. This 27 - Support journals ($LogFile) which have been modified by chkdsk. This
@@ -37,7 +29,8 @@ ToDo/Notes:
37 The Windows boot will run chkdsk and then reboot. The user can then 29 The Windows boot will run chkdsk and then reboot. The user can then
38 immediately boot into Linux rather than having to do a full Windows 30 immediately boot into Linux rather than having to do a full Windows
39 boot first before rebooting into Linux and we will recognize such a 31 boot first before rebooting into Linux and we will recognize such a
40 journal and empty it as it is clean by definition. 32 journal and empty it as it is clean by definition. Note, this only
33 works if chkdsk left the journal in an obviously clean state.
41 - Support journals ($LogFile) with only one restart page as well as 34 - Support journals ($LogFile) with only one restart page as well as
42 journals with two different restart pages. We sanity check both and 35 journals with two different restart pages. We sanity check both and
43 either use the only sane one or the more recent one of the two in the 36 either use the only sane one or the more recent one of the two in the
@@ -102,6 +95,13 @@ ToDo/Notes:
102 my ways. 95 my ways.
103 - Fix various bugs in the runlist merging code. (Based on libntfs 96 - Fix various bugs in the runlist merging code. (Based on libntfs
104 changes by Richard Russon.) 97 changes by Richard Russon.)
98 - Fix sparse warnings that have crept in over time.
99 - Change ntfs_cluster_free() to require a write locked runlist on entry
100 since we otherwise get into a lock reversal deadlock if a read locked
101 runlist is passed in. In the process also change it to take an ntfs
102 inode instead of a vfs inode as parameter.
103 - Fix the definition of the CHKD ntfs record magic. It had an off by
104 two error causing it to be CHKB instead of CHKD.
105 105
1062.1.23 - Implement extension of resident files and make writing safe as well as 1062.1.23 - Implement extension of resident files and make writing safe as well as
107 many bug fixes, cleanups, and enhancements... 107 many bug fixes, cleanups, and enhancements...