Changes by: antona
Update of /cvsroot/linux-ntfs/linux-ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv9476
Modified Files:
TODO.ntfsfix
Log Message:
Added a logfile dumper as a new utility.
Almost finished the first ntfsfix release. (Still missingin CVS are attrib.c
for ntfslib and the makefiles to build everything.)
Fixes for nested packed structure/union typedefs as gcc doesn't automatically
nest the __attribute__ ((__packed__)), even though according to the gcc info
page it does. (Thanks to Yuri Per <yu...@ac...> for pointing this out.)
Index: TODO.ntfsfix
===================================================================
RCS file: /cvsroot/linux-ntfs/linux-ntfs/TODO.ntfsfix,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** TODO.ntfsfix 2001/01/24 02:10:41 1.1
--- TODO.ntfsfix 2001/01/27 14:22:02 1.2
***************
*** 15,24 ****
* format for the records in the file. - Argh!
*
! * - On ntfs 3.0+ volumes need to disable the usn journal if it is active.
*
! * - On ntfs 3.0+ volumes need to mark the quota out of date?
*
*
*
*
*
--- 15,33 ----
* format for the records in the file. - Argh!
*
! * 5. YES! - Big thanks to Yuri Per <yu...@ac...> for providing the
! * solution: Set the contents of the $LogFile to 0xff's which results in
! * Windows regarding the log as being empty and just starts it again!
! * One problem down! (-:
*
! * - On ntfs 3.0+ volumes need to disable the usn journal if it is active:
*
+ * 1. Delete file $UsnJrnl from /$Extend directory.
*
+ * 2. Walk the mft and for each record set the usn in the standard information
+ * attribute to zero. (This can take a while on large volumes.)
*
+ * - On ntfs 3.0+ volumes need to mark the quota out of date? - Probably, but
+ * it shouldn't cause any corruption not doing so for the moment so this is
+ * not a showstopper bug for the first release.
*
*
|