Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
fbc5dabd
Commit
fbc5dabd
authored
Mar 25, 2002
by
Anton Altaparmakov
Committed by
Anton Altaparmakov
Mar 25, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NTFS: Update version to 2.0.1 and update docs and changelog.
parent
cfac3b0b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
3 deletions
+18
-3
Documentation/filesystems/ntfs.txt
Documentation/filesystems/ntfs.txt
+9
-2
fs/ntfs/ChangeLog
fs/ntfs/ChangeLog
+8
-0
fs/ntfs/Makefile
fs/ntfs/Makefile
+1
-1
No files found.
Documentation/filesystems/ntfs.txt
View file @
fbc5dabd
...
@@ -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.
fs/ntfs/ChangeLog
View file @
fbc5dabd
...
@@ -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.
...
...
fs/ntfs/Makefile
View file @
fbc5dabd
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment