Commit fbc5dabd authored by Anton Altaparmakov's avatar Anton Altaparmakov Committed by Anton Altaparmakov

NTFS: Update version to 2.0.1 and update docs and changelog.

parent cfac3b0b
...@@ -140,8 +140,11 @@ Features ...@@ -140,8 +140,11 @@ Features
- This is a complete rewrite of the NTFS driver that used to be in the kernel. - This is a complete rewrite of the NTFS driver that used to be in the kernel.
This new driver implements NTFS read support and is functionally equivalent This new driver implements NTFS read support and is functionally equivalent
to the old ntfs driver. And in addition the new driver has full support for to the old ntfs driver.
sparse files on NTFS 3.x volumes which the old driver isn't happy with. - The new driver has full support for sparse files on NTFS 3.x volumes which
the old driver isn't happy with.
- The new driver supports execution of binaries due to mmap() now being
supported.
- A comparison of the two drivers using: - A comparison of the two drivers using:
time find . -type f -exec md5sum "{}" \; time find . -type f -exec md5sum "{}" \;
run three times in sequence with each driver (after a reboot) on a 1.4GiB run three times in sequence with each driver (after a reboot) on a 1.4GiB
...@@ -163,6 +166,10 @@ ChangeLog ...@@ -163,6 +166,10 @@ ChangeLog
Note that a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog. Note that a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
2.0.1:
- Minor updates, primarily set the executable bit by default on files
so they can be executed.
2.0.0: 2.0.0:
- Started ChangeLog. - Started ChangeLog.
...@@ -27,6 +27,14 @@ ToDo: ...@@ -27,6 +27,14 @@ ToDo:
quite big. Modularising them a bit, e.g. a-la get_block(), will make quite big. Modularising them a bit, e.g. a-la get_block(), will make
them cleaner and make code reuse easier. them cleaner and make code reuse easier.
2.0.1 - Minor updates.
- Make default umask correspond to documentation.
- Improve documentation.
- Set default mode to include execute bit. The {u,f,d}mask can be used
to take it away if desired. This allows binaries to be executed from
a mounted ntfs partition.
2.0.0 - New version number. Remove TNG from the name. Now in the kernel. 2.0.0 - New version number. Remove TNG from the name. Now in the kernel.
- Add kill_super, just keeping up with the vfs changes in the kernel. - Add kill_super, just keeping up with the vfs changes in the kernel.
......
...@@ -7,7 +7,7 @@ obj-y := time.o unistr.o inode.o file.o mft.o super.o debug.o aops.o \ ...@@ -7,7 +7,7 @@ obj-y := time.o unistr.o inode.o file.o mft.o super.o debug.o aops.o \
obj-m := $(O_TARGET) obj-m := $(O_TARGET)
EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.0\" EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.1\"
ifeq ($(CONFIG_NTFS_DEBUG),y) ifeq ($(CONFIG_NTFS_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG EXTRA_CFLAGS += -DDEBUG
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment