diff options
| -rw-r--r-- | Documentation/filesystems/ntfs.txt | 11 | ||||
| -rw-r--r-- | fs/ntfs/ChangeLog | 8 | ||||
| -rw-r--r-- | fs/ntfs/Makefile | 2 |
3 files changed, 18 insertions, 3 deletions
diff --git a/Documentation/filesystems/ntfs.txt b/Documentation/filesystems/ntfs.txt index 7486e2259988..dbf30b96a273 100644 --- a/Documentation/filesystems/ntfs.txt +++ b/Documentation/filesystems/ntfs.txt @@ -140,8 +140,11 @@ Features - 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 - to the old ntfs driver. And in addition the new driver has full support for - sparse files on NTFS 3.x volumes which the old driver isn't happy with. + to the old ntfs driver. +- 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: time find . -type f -exec md5sum "{}" \; run three times in sequence with each driver (after a reboot) on a 1.4GiB @@ -163,6 +166,10 @@ 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: - Started ChangeLog. diff --git a/fs/ntfs/ChangeLog b/fs/ntfs/ChangeLog index 5537bcb9ce45..1063cde6733a 100644 --- a/fs/ntfs/ChangeLog +++ b/fs/ntfs/ChangeLog @@ -27,6 +27,14 @@ ToDo: quite big. Modularising them a bit, e.g. a-la get_block(), will make 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. - Add kill_super, just keeping up with the vfs changes in the kernel. diff --git a/fs/ntfs/Makefile b/fs/ntfs/Makefile index 0910b13c14eb..7e75691e462f 100644 --- a/fs/ntfs/Makefile +++ b/fs/ntfs/Makefile @@ -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) -EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.0\" +EXTRA_CFLAGS = -DNTFS_VERSION=\"2.0.1\" ifeq ($(CONFIG_NTFS_DEBUG),y) EXTRA_CFLAGS += -DDEBUG |
