ntfs.txt 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. The Linux NTFS filesystem driver
  2. ================================
  3. Table of contents
  4. =================
  5. - Overview
  6. - Web site
  7. - Features
  8. - Supported mount options
  9. - Known bugs and (mis-)features
  10. - Using NTFS volume and stripe sets
  11. - The Device-Mapper driver
  12. - The Software RAID / MD driver
  13. - Limitiations when using the MD driver
  14. - ChangeLog
  15. Overview
  16. ========
  17. Linux-NTFS comes with a number of user-space programs known as ntfsprogs.
  18. These include mkntfs, a full-featured ntfs filesystem format utility,
  19. ntfsundelete used for recovering files that were unintentionally deleted
  20. from an NTFS volume and ntfsresize which is used to resize an NTFS partition.
  21. See the web site for more information.
  22. To mount an NTFS 1.2/3.x (Windows NT4/2000/XP/2003) volume, use the file
  23. system type 'ntfs'. The driver currently supports read-only mode (with no
  24. fault-tolerance, encryption or journalling) and very limited, but safe, write
  25. support.
  26. For fault tolerance and raid support (i.e. volume and stripe sets), you can
  27. use the kernel's Software RAID / MD driver. See section "Using Software RAID
  28. with NTFS" for details.
  29. Web site
  30. ========
  31. There is plenty of additional information on the linux-ntfs web site
  32. at http://linux-ntfs.sourceforge.net/
  33. The web site has a lot of additional information, such as a comprehensive
  34. FAQ, documentation on the NTFS on-disk format, informaiton on the Linux-NTFS
  35. userspace utilities, etc.
  36. Features
  37. ========
  38. - This is a complete rewrite of the NTFS driver that used to be in the kernel.
  39. This new driver implements NTFS read support and is functionally equivalent
  40. to the old ntfs driver.
  41. - The new driver has full support for sparse files on NTFS 3.x volumes which
  42. the old driver isn't happy with.
  43. - The new driver supports execution of binaries due to mmap() now being
  44. supported.
  45. - The new driver supports loopback mounting of files on NTFS which is used by
  46. some Linux distributions to enable the user to run Linux from an NTFS
  47. partition by creating a large file while in Windows and then loopback
  48. mounting the file while in Linux and creating a Linux filesystem on it that
  49. is used to install Linux on it.
  50. - A comparison of the two drivers using:
  51. time find . -type f -exec md5sum "{}" \;
  52. run three times in sequence with each driver (after a reboot) on a 1.4GiB
  53. NTFS partition, showed the new driver to be 20% faster in total time elapsed
  54. (from 9:43 minutes on average down to 7:53). The time spent in user space
  55. was unchanged but the time spent in the kernel was decreased by a factor of
  56. 2.5 (from 85 CPU seconds down to 33).
  57. - The driver does not support short file names in general. For backwards
  58. compatibility, we implement access to files using their short file names if
  59. they exist. The driver will not create short file names however, and a
  60. rename will discard any existing short file name.
  61. - The new driver supports exporting of mounted NTFS volumes via NFS.
  62. - The new driver supports async io (aio).
  63. - The new driver supports fsync(2), fdatasync(2), and msync(2).
  64. - The new driver supports readv(2) and writev(2).
  65. - The new driver supports access time updates (including mtime and ctime).
  66. Supported mount options
  67. =======================
  68. In addition to the generic mount options described by the manual page for the
  69. mount command (man 8 mount, also see man 5 fstab), the NTFS driver supports the
  70. following mount options:
  71. iocharset=name Deprecated option. Still supported but please use
  72. nls=name in the future. See description for nls=name.
  73. nls=name Character set to use when returning file names.
  74. Unlike VFAT, NTFS suppresses names that contain
  75. unconvertible characters. Note that most character
  76. sets contain insufficient characters to represent all
  77. possible Unicode characters that can exist on NTFS.
  78. To be sure you are not missing any files, you are
  79. advised to use nls=utf8 which is capable of
  80. representing all Unicode characters.
  81. utf8=<bool> Option no longer supported. Currently mapped to
  82. nls=utf8 but please use nls=utf8 in the future and
  83. make sure utf8 is compiled either as module or into
  84. the kernel. See description for nls=name.
  85. uid=
  86. gid=
  87. umask= Provide default owner, group, and access mode mask.
  88. These options work as documented in mount(8). By
  89. default, the files/directories are owned by root and
  90. he/she has read and write permissions, as well as
  91. browse permission for directories. No one else has any
  92. access permissions. I.e. the mode on all files is by
  93. default rw------- and for directories rwx------, a
  94. consequence of the default fmask=0177 and dmask=0077.
  95. Using a umask of zero will grant all permissions to
  96. everyone, i.e. all files and directories will have mode
  97. rwxrwxrwx.
  98. fmask=
  99. dmask= Instead of specifying umask which applies both to
  100. files and directories, fmask applies only to files and
  101. dmask only to directories.
  102. sloppy=<BOOL> If sloppy is specified, ignore unknown mount options.
  103. Otherwise the default behaviour is to abort mount if
  104. any unknown options are found.
  105. show_sys_files=<BOOL> If show_sys_files is specified, show the system files
  106. in directory listings. Otherwise the default behaviour
  107. is to hide the system files.
  108. Note that even when show_sys_files is specified, "$MFT"
  109. will not be visible due to bugs/mis-features in glibc.
  110. Further, note that irrespective of show_sys_files, all
  111. files are accessible by name, i.e. you can always do
  112. "ls -l \$UpCase" for example to specifically show the
  113. system file containing the Unicode upcase table.
  114. case_sensitive=<BOOL> If case_sensitive is specified, treat all file names as
  115. case sensitive and create file names in the POSIX
  116. namespace. Otherwise the default behaviour is to treat
  117. file names as case insensitive and to create file names
  118. in the WIN32/LONG name space. Note, the Linux NTFS
  119. driver will never create short file names and will
  120. remove them on rename/delete of the corresponding long
  121. file name.
  122. Note that files remain accessible via their short file
  123. name, if it exists. If case_sensitive, you will need
  124. to provide the correct case of the short file name.
  125. disable_sparse=<BOOL> If disable_sparse is specified, creation of sparse
  126. regions, i.e. holes, inside files is disabled for the
  127. volume (for the duration of this mount only). By
  128. default, creation of sparse regions is enabled, which
  129. is consistent with the behaviour of traditional Unix
  130. filesystems.
  131. errors=opt What to do when critical filesystem errors are found.
  132. Following values can be used for "opt":
  133. continue: DEFAULT, try to clean-up as much as
  134. possible, e.g. marking a corrupt inode as
  135. bad so it is no longer accessed, and then
  136. continue.
  137. recover: At present only supported is recovery of
  138. the boot sector from the backup copy.
  139. If read-only mount, the recovery is done
  140. in memory only and not written to disk.
  141. Note that the options are additive, i.e. specifying:
  142. errors=continue,errors=recover
  143. means the driver will attempt to recover and if that
  144. fails it will clean-up as much as possible and
  145. continue.
  146. mft_zone_multiplier= Set the MFT zone multiplier for the volume (this
  147. setting is not persistent across mounts and can be
  148. changed from mount to mount but cannot be changed on
  149. remount). Values of 1 to 4 are allowed, 1 being the
  150. default. The MFT zone multiplier determines how much
  151. space is reserved for the MFT on the volume. If all
  152. other space is used up, then the MFT zone will be
  153. shrunk dynamically, so this has no impact on the
  154. amount of free space. However, it can have an impact
  155. on performance by affecting fragmentation of the MFT.
  156. In general use the default. If you have a lot of small
  157. files then use a higher value. The values have the
  158. following meaning:
  159. Value MFT zone size (% of volume size)
  160. 1 12.5%
  161. 2 25%
  162. 3 37.5%
  163. 4 50%
  164. Note this option is irrelevant for read-only mounts.
  165. Known bugs and (mis-)features
  166. =============================
  167. - The link count on each directory inode entry is set to 1, due to Linux not
  168. supporting directory hard links. This may well confuse some user space
  169. applications, since the directory names will have the same inode numbers.
  170. This also speeds up ntfs_read_inode() immensely. And we haven't found any
  171. problems with this approach so far. If you find a problem with this, please
  172. let us know.
  173. Please send bug reports/comments/feedback/abuse to the Linux-NTFS development
  174. list at sourceforge: linux-ntfs-dev@lists.sourceforge.net
  175. Using NTFS volume and stripe sets
  176. =================================
  177. For support of volume and stripe sets, you can either use the kernel's
  178. Device-Mapper driver or the kernel's Software RAID / MD driver. The former is
  179. the recommended one to use for linear raid. But the latter is required for
  180. raid level 5. For striping and mirroring, either driver should work fine.
  181. The Device-Mapper driver
  182. ------------------------
  183. You will need to create a table of the components of the volume/stripe set and
  184. how they fit together and load this into the kernel using the dmsetup utility
  185. (see man 8 dmsetup).
  186. Linear volume sets, i.e. linear raid, has been tested and works fine. Even
  187. though untested, there is no reason why stripe sets, i.e. raid level 0, and
  188. mirrors, i.e. raid level 1 should not work, too. Stripes with parity, i.e.
  189. raid level 5, unfortunately cannot work yet because the current version of the
  190. Device-Mapper driver does not support raid level 5. You may be able to use the
  191. Software RAID / MD driver for raid level 5, see the next section for details.
  192. To create the table describing your volume you will need to know each of its
  193. components and their sizes in sectors, i.e. multiples of 512-byte blocks.
  194. For NT4 fault tolerant volumes you can obtain the sizes using fdisk. So for
  195. example if one of your partitions is /dev/hda2 you would do:
  196. $ fdisk -ul /dev/hda
  197. Disk /dev/hda: 81.9 GB, 81964302336 bytes
  198. 255 heads, 63 sectors/track, 9964 cylinders, total 160086528 sectors
  199. Units = sectors of 1 * 512 = 512 bytes
  200. Device Boot Start End Blocks Id System
  201. /dev/hda1 * 63 4209029 2104483+ 83 Linux
  202. /dev/hda2 4209030 37768814 16779892+ 86 NTFS
  203. /dev/hda3 37768815 46170809 4200997+ 83 Linux
  204. And you would know that /dev/hda2 has a size of 37768814 - 4209030 + 1 =
  205. 33559785 sectors.
  206. For Win2k and later dynamic disks, you can for example use the ldminfo utility
  207. which is part of the Linux LDM tools (the latest version at the time of
  208. writing is linux-ldm-0.0.8.tar.bz2). You can download it from:
  209. http://linux-ntfs.sourceforge.net/downloads.html
  210. Simply extract the downloaded archive (tar xvjf linux-ldm-0.0.8.tar.bz2), go
  211. into it (cd linux-ldm-0.0.8) and change to the test directory (cd test). You
  212. will find the precompiled (i386) ldminfo utility there. NOTE: You will not be
  213. able to compile this yourself easily so use the binary version!
  214. Then you would use ldminfo in dump mode to obtain the necessary information:
  215. $ ./ldminfo --dump /dev/hda
  216. This would dump the LDM database found on /dev/hda which describes all of your
  217. dynamic disks and all the volumes on them. At the bottom you will see the
  218. VOLUME DEFINITIONS section which is all you really need. You may need to look
  219. further above to determine which of the disks in the volume definitions is
  220. which device in Linux. Hint: Run ldminfo on each of your dynamic disks and
  221. look at the Disk Id close to the top of the output for each (the PRIVATE HEADER
  222. section). You can then find these Disk Ids in the VBLK DATABASE section in the
  223. <Disk> components where you will get the LDM Name for the disk that is found in
  224. the VOLUME DEFINITIONS section.
  225. Note you will also need to enable the LDM driver in the Linux kernel. If your
  226. distribution did not enable it, you will need to recompile the kernel with it
  227. enabled. This will create the LDM partitions on each device at boot time. You
  228. would then use those devices (for /dev/hda they would be /dev/hda1, 2, 3, etc)
  229. in the Device-Mapper table.
  230. You can also bypass using the LDM driver by using the main device (e.g.
  231. /dev/hda) and then using the offsets of the LDM partitions into this device as
  232. the "Start sector of device" when creating the table. Once again ldminfo would
  233. give you the correct information to do this.
  234. Assuming you know all your devices and their sizes things are easy.
  235. For a linear raid the table would look like this (note all values are in
  236. 512-byte sectors):
  237. --- cut here ---
  238. # Offset into Size of this Raid type Device Start sector
  239. # volume device of device
  240. 0 1028161 linear /dev/hda1 0
  241. 1028161 3903762 linear /dev/hdb2 0
  242. 4931923 2103211 linear /dev/hdc1 0
  243. --- cut here ---
  244. For a striped volume, i.e. raid level 0, you will need to know the chunk size
  245. you used when creating the volume. Windows uses 64kiB as the default, so it
  246. will probably be this unless you changes the defaults when creating the array.
  247. For a raid level 0 the table would look like this (note all values are in
  248. 512-byte sectors):
  249. --- cut here ---
  250. # Offset Size Raid Number Chunk 1st Start 2nd Start
  251. # into of the type of size Device in Device in
  252. # volume volume stripes device device
  253. 0 2056320 striped 2 128 /dev/hda1 0 /dev/hdb1 0
  254. --- cut here ---
  255. If there are more than two devices, just add each of them to the end of the
  256. line.
  257. Finally, for a mirrored volume, i.e. raid level 1, the table would look like
  258. this (note all values are in 512-byte sectors):
  259. --- cut here ---
  260. # Ofs Size Raid Log Number Region Should Number Source Start Taget Start
  261. # in of the type type of log size sync? of Device in Device in
  262. # vol volume params mirrors Device Device
  263. 0 2056320 mirror core 2 16 nosync 2 /dev/hda1 0 /dev/hdb1 0
  264. --- cut here ---
  265. If you are mirroring to multiple devices you can specify further targets at the
  266. end of the line.
  267. Note the "Should sync?" parameter "nosync" means that the two mirrors are
  268. already in sync which will be the case on a clean shutdown of Windows. If the
  269. mirrors are not clean, you can specify the "sync" option instead of "nosync"
  270. and the Device-Mapper driver will then copy the entirey of the "Source Device"
  271. to the "Target Device" or if you specified multipled target devices to all of
  272. them.
  273. Once you have your table, save it in a file somewhere (e.g. /etc/ntfsvolume1),
  274. and hand it over to dmsetup to work with, like so:
  275. $ dmsetup create myvolume1 /etc/ntfsvolume1
  276. You can obviously replace "myvolume1" with whatever name you like.
  277. If it all worked, you will now have the device /dev/device-mapper/myvolume1
  278. which you can then just use as an argument to the mount command as usual to
  279. mount the ntfs volume. For example:
  280. $ mount -t ntfs -o ro /dev/device-mapper/myvolume1 /mnt/myvol1
  281. (You need to create the directory /mnt/myvol1 first and of course you can use
  282. anything you like instead of /mnt/myvol1 as long as it is an existing
  283. directory.)
  284. It is advisable to do the mount read-only to see if the volume has been setup
  285. correctly to avoid the possibility of causing damage to the data on the ntfs
  286. volume.
  287. The Software RAID / MD driver
  288. -----------------------------
  289. An alternative to using the Device-Mapper driver is to use the kernel's
  290. Software RAID / MD driver. For which you need to set up your /etc/raidtab
  291. appropriately (see man 5 raidtab).
  292. Linear volume sets, i.e. linear raid, as well as stripe sets, i.e. raid level
  293. 0, have been tested and work fine (though see section "Limitiations when using
  294. the MD driver with NTFS volumes" especially if you want to use linear raid).
  295. Even though untested, there is no reason why mirrors, i.e. raid level 1, and
  296. stripes with parity, i.e. raid level 5, should not work, too.
  297. You have to use the "persistent-superblock 0" option for each raid-disk in the
  298. NTFS volume/stripe you are configuring in /etc/raidtab as the persistent
  299. superblock used by the MD driver would damange the NTFS volume.
  300. Windows by default uses a stripe chunk size of 64k, so you probably want the
  301. "chunk-size 64k" option for each raid-disk, too.
  302. For example, if you have a stripe set consisting of two partitions /dev/hda5
  303. and /dev/hdb1 your /etc/raidtab would look like this:
  304. raiddev /dev/md0
  305. raid-level 0
  306. nr-raid-disks 2
  307. nr-spare-disks 0
  308. persistent-superblock 0
  309. chunk-size 64k
  310. device /dev/hda5
  311. raid-disk 0
  312. device /dev/hdb1
  313. raid-disl 1
  314. For linear raid, just change the raid-level above to "raid-level linear", for
  315. mirrors, change it to "raid-level 1", and for stripe sets with parity, change
  316. it to "raid-level 5".
  317. Note for stripe sets with parity you will also need to tell the MD driver
  318. which parity algorithm to use by specifying the option "parity-algorithm
  319. which", where you need to replace "which" with the name of the algorithm to
  320. use (see man 5 raidtab for available algorithms) and you will have to try the
  321. different available algorithms until you find one that works. Make sure you
  322. are working read-only when playing with this as you may damage your data
  323. otherwise. If you find which algorithm works please let us know (email the
  324. linux-ntfs developers list linux-ntfs-dev@lists.sourceforge.net or drop in on
  325. IRC in channel #ntfs on the irc.freenode.net network) so we can update this
  326. documentation.
  327. Once the raidtab is setup, run for example raid0run -a to start all devices or
  328. raid0run /dev/md0 to start a particular md device, in this case /dev/md0.
  329. Then just use the mount command as usual to mount the ntfs volume using for
  330. example: mount -t ntfs -o ro /dev/md0 /mnt/myntfsvolume
  331. It is advisable to do the mount read-only to see if the md volume has been
  332. setup correctly to avoid the possibility of causing damage to the data on the
  333. ntfs volume.
  334. Limitiations when using the Software RAID / MD driver
  335. -----------------------------------------------------
  336. Using the md driver will not work properly if any of your NTFS partitions have
  337. an odd number of sectors. This is especially important for linear raid as all
  338. data after the first partition with an odd number of sectors will be offset by
  339. one or more sectors so if you mount such a partition with write support you
  340. will cause massive damage to the data on the volume which will only become
  341. apparent when you try to use the volume again under Windows.
  342. So when using linear raid, make sure that all your partitions have an even
  343. number of sectors BEFORE attempting to use it. You have been warned!
  344. Even better is to simply use the Device-Mapper for linear raid and then you do
  345. not have this problem with odd numbers of sectors.
  346. ChangeLog
  347. =========
  348. Note, a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
  349. 2.1.24:
  350. - Support journals ($LogFile) which have been modified by chkdsk. This
  351. means users can boot into Windows after we marked the volume dirty.
  352. The Windows boot will run chkdsk and then reboot. The user can then
  353. immediately boot into Linux rather than having to do a full Windows
  354. boot first before rebooting into Linux and we will recognize such a
  355. journal and empty it as it is clean by definition.
  356. - Support journals ($LogFile) with only one restart page as well as
  357. journals with two different restart pages. We sanity check both and
  358. either use the only sane one or the more recent one of the two in the
  359. case that both are valid.
  360. - Lots of bug fixes and enhancements across the board.
  361. 2.1.23:
  362. - Stamp the user space journal, aka transaction log, aka $UsnJrnl, if
  363. it is present and active thus telling Windows and applications using
  364. the transaction log that changes can have happened on the volume
  365. which are not recorded in $UsnJrnl.
  366. - Detect the case when Windows has been hibernated (suspended to disk)
  367. and if this is the case do not allow (re)mounting read-write to
  368. prevent data corruption when you boot back into the suspended
  369. Windows session.
  370. - Implement extension of resident files using the normal file write
  371. code paths, i.e. most very small files can be extended to be a little
  372. bit bigger but not by much.
  373. - Add new mount option "disable_sparse". (See list of mount options
  374. above for details.)
  375. - Improve handling of ntfs volumes with errors and strange boot sectors
  376. in particular.
  377. - Fix various bugs including a nasty deadlock that appeared in recent
  378. kernels (around 2.6.11-2.6.12 timeframe).
  379. 2.1.22:
  380. - Improve handling of ntfs volumes with errors.
  381. - Fix various bugs and race conditions.
  382. 2.1.21:
  383. - Fix several race conditions and various other bugs.
  384. - Many internal cleanups, code reorganization, optimizations, and mft
  385. and index record writing code rewritten to fit in with the changes.
  386. - Update Documentation/filesystems/ntfs.txt with instructions on how to
  387. use the Device-Mapper driver with NTFS ftdisk/LDM raid.
  388. 2.1.20:
  389. - Fix two stupid bugs introduced in 2.1.18 release.
  390. 2.1.19:
  391. - Minor bugfix in handling of the default upcase table.
  392. - Many internal cleanups and improvements. Many thanks to Linus
  393. Torvalds and Al Viro for the help and advice with the sparse
  394. annotations and cleanups.
  395. 2.1.18:
  396. - Fix scheduling latencies at mount time. (Ingo Molnar)
  397. - Fix endianness bug in a little traversed portion of the attribute
  398. lookup code.
  399. 2.1.17:
  400. - Fix bugs in mount time error code paths.
  401. 2.1.16:
  402. - Implement access time updates (including mtime and ctime).
  403. - Implement fsync(2), fdatasync(2), and msync(2) system calls.
  404. - Enable the readv(2) and writev(2) system calls.
  405. - Enable access via the asynchronous io (aio) API by adding support for
  406. the aio_read(3) and aio_write(3) functions.
  407. 2.1.15:
  408. - Invalidate quotas when (re)mounting read-write.
  409. NOTE: This now only leave user space journalling on the side. (See
  410. note for version 2.1.13, below.)
  411. 2.1.14:
  412. - Fix an NFSd caused deadlock reported by several users.
  413. 2.1.13:
  414. - Implement writing of inodes (access time updates are not implemented
  415. yet so mounting with -o noatime,nodiratime is enforced).
  416. - Enable writing out of resident files so you can now overwrite any
  417. uncompressed, unencrypted, nonsparse file as long as you do not
  418. change the file size.
  419. - Add housekeeping of ntfs system files so that ntfsfix no longer needs
  420. to be run after writing to an NTFS volume.
  421. NOTE: This still leaves quota tracking and user space journalling on
  422. the side but they should not cause data corruption. In the worst
  423. case the charged quotas will be out of date ($Quota) and some
  424. userspace applications might get confused due to the out of date
  425. userspace journal ($UsnJrnl).
  426. 2.1.12:
  427. - Fix the second fix to the decompression engine from the 2.1.9 release
  428. and some further internals cleanups.
  429. 2.1.11:
  430. - Driver internal cleanups.
  431. 2.1.10:
  432. - Force read-only (re)mounting of volumes with unsupported volume
  433. flags and various cleanups.
  434. 2.1.9:
  435. - Fix two bugs in handling of corner cases in the decompression engine.
  436. 2.1.8:
  437. - Read the $MFT mirror and compare it to the $MFT and if the two do not
  438. match, force a read-only mount and do not allow read-write remounts.
  439. - Read and parse the $LogFile journal and if it indicates that the
  440. volume was not shutdown cleanly, force a read-only mount and do not
  441. allow read-write remounts. If the $LogFile indicates a clean
  442. shutdown and a read-write (re)mount is requested, empty $LogFile to
  443. ensure that Windows cannot cause data corruption by replaying a stale
  444. journal after Linux has written to the volume.
  445. - Improve time handling so that the NTFS time is fully preserved when
  446. converted to kernel time and only up to 99 nano-seconds are lost when
  447. kernel time is converted to NTFS time.
  448. 2.1.7:
  449. - Enable NFS exporting of mounted NTFS volumes.
  450. 2.1.6:
  451. - Fix minor bug in handling of compressed directories that fixes the
  452. erroneous "du" and "stat" output people reported.
  453. 2.1.5:
  454. - Minor bug fix in attribute list attribute handling that fixes the
  455. I/O errors on "ls" of certain fragmented files found by at least two
  456. people running Windows XP.
  457. 2.1.4:
  458. - Minor update allowing compilation with all gcc versions (well, the
  459. ones the kernel can be compiled with anyway).
  460. 2.1.3:
  461. - Major bug fixes for reading files and volumes in corner cases which
  462. were being hit by Windows 2k/XP users.
  463. 2.1.2:
  464. - Major bug fixes aleviating the hangs in statfs experienced by some
  465. users.
  466. 2.1.1:
  467. - Update handling of compressed files so people no longer get the
  468. frequently reported warning messages about initialized_size !=
  469. data_size.
  470. 2.1.0:
  471. - Add configuration option for developmental write support.
  472. - Initial implementation of file overwriting. (Writes to resident files
  473. are not written out to disk yet, so avoid writing to files smaller
  474. than about 1kiB.)
  475. - Intercept/abort changes in file size as they are not implemented yet.
  476. 2.0.25:
  477. - Minor bugfixes in error code paths and small cleanups.
  478. 2.0.24:
  479. - Small internal cleanups.
  480. - Support for sendfile system call. (Christoph Hellwig)
  481. 2.0.23:
  482. - Massive internal locking changes to mft record locking. Fixes
  483. various race conditions and deadlocks.
  484. - Fix ntfs over loopback for compressed files by adding an
  485. optimization barrier. (gcc was screwing up otherwise ?)
  486. Thanks go to Christoph Hellwig for pointing these two out:
  487. - Remove now unused function fs/ntfs/malloc.h::vmalloc_nofs().
  488. - Fix ntfs_free() for ia64 and parisc.
  489. 2.0.22:
  490. - Small internal cleanups.
  491. 2.0.21:
  492. These only affect 32-bit architectures:
  493. - Check for, and refuse to mount too large volumes (maximum is 2TiB).
  494. - Check for, and refuse to open too large files and directories
  495. (maximum is 16TiB).
  496. 2.0.20:
  497. - Support non-resident directory index bitmaps. This means we now cope
  498. with huge directories without problems.
  499. - Fix a page leak that manifested itself in some cases when reading
  500. directory contents.
  501. - Internal cleanups.
  502. 2.0.19:
  503. - Fix race condition and improvements in block i/o interface.
  504. - Optimization when reading compressed files.
  505. 2.0.18:
  506. - Fix race condition in reading of compressed files.
  507. 2.0.17:
  508. - Cleanups and optimizations.
  509. 2.0.16:
  510. - Fix stupid bug introduced in 2.0.15 in new attribute inode API.
  511. - Big internal cleanup replacing the mftbmp access hacks by using the
  512. new attribute inode API instead.
  513. 2.0.15:
  514. - Bug fix in parsing of remount options.
  515. - Internal changes implementing attribute (fake) inodes allowing all
  516. attribute i/o to go via the page cache and to use all the normal
  517. vfs/mm functionality.
  518. 2.0.14:
  519. - Internal changes improving run list merging code and minor locking
  520. change to not rely on BKL in ntfs_statfs().
  521. 2.0.13:
  522. - Internal changes towards using iget5_locked() in preparation for
  523. fake inodes and small cleanups to ntfs_volume structure.
  524. 2.0.12:
  525. - Internal cleanups in address space operations made possible by the
  526. changes introduced in the previous release.
  527. 2.0.11:
  528. - Internal updates and cleanups introducing the first step towards
  529. fake inode based attribute i/o.
  530. 2.0.10:
  531. - Microsoft says that the maximum number of inodes is 2^32 - 1. Update
  532. the driver accordingly to only use 32-bits to store inode numbers on
  533. 32-bit architectures. This improves the speed of the driver a little.
  534. 2.0.9:
  535. - Change decompression engine to use a single buffer. This should not
  536. affect performance except perhaps on the most heavy i/o on SMP
  537. systems when accessing multiple compressed files from multiple
  538. devices simultaneously.
  539. - Minor updates and cleanups.
  540. 2.0.8:
  541. - Remove now obsolete show_inodes and posix mount option(s).
  542. - Restore show_sys_files mount option.
  543. - Add new mount option case_sensitive, to determine if the driver
  544. treats file names as case sensitive or not.
  545. - Mostly drop support for short file names (for backwards compatibility
  546. we only support accessing files via their short file name if one
  547. exists).
  548. - Fix dcache aliasing issues wrt short/long file names.
  549. - Cleanups and minor fixes.
  550. 2.0.7:
  551. - Just cleanups.
  552. 2.0.6:
  553. - Major bugfix to make compatible with other kernel changes. This fixes
  554. the hangs/oopses on umount.
  555. - Locking cleanup in directory operations (remove BKL usage).
  556. 2.0.5:
  557. - Major buffer overflow bug fix.
  558. - Minor cleanups and updates for kernel 2.5.12.
  559. 2.0.4:
  560. - Cleanups and updates for kernel 2.5.11.
  561. 2.0.3:
  562. - Small bug fixes, cleanups, and performance improvements.
  563. 2.0.2:
  564. - Use default fmask of 0177 so that files are no executable by default.
  565. If you want owner executable files, just use fmask=0077.
  566. - Update for kernel 2.5.9 but preserve backwards compatibility with
  567. kernel 2.5.7.
  568. - Minor bug fixes, cleanups, and updates.
  569. 2.0.1:
  570. - Minor updates, primarily set the executable bit by default on files
  571. so they can be executed.
  572. 2.0.0:
  573. - Started ChangeLog.