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
19a27c50
Commit
19a27c50
authored
May 27, 2002
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NTFS: Fix really dumb logic bug in boot sector recovery.
parent
6f3894e9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
+5
-4
Documentation/filesystems/ntfs.txt
Documentation/filesystems/ntfs.txt
+2
-2
fs/ntfs/ChangeLog
fs/ntfs/ChangeLog
+2
-1
fs/ntfs/super.c
fs/ntfs/super.c
+1
-1
No files found.
Documentation/filesystems/ntfs.txt
View file @
19a27c50
...
...
@@ -245,7 +245,7 @@ number of sectors BEFORE attempting to use it. You have been warned!
ChangeLog
=========
Note
that
a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
Note
,
a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
2.0.8:
- Remove now obsolete show_inodes and posix mount option(s).
...
...
@@ -256,7 +256,7 @@ Note that a technical ChangeLog aimed at kernel hackers is in fs/ntfs/ChangeLog.
we only support accessing files via their short file name if one
exists).
- Fix dcache aliasing issues wrt short/long file names.
- Cleanups.
- Cleanups
and minor fixes
.
2.0.7:
- Just cleanups.
2.0.6:
...
...
fs/ntfs/ChangeLog
View file @
19a27c50
...
...
@@ -33,9 +33,10 @@ ToDo:
- Add new mount option case_sensitive, to determine if the driver
treats file names as case sensitive or not. If case sensitive, create
file names in the POSIX namespace. Otherwise create file names in the
LONG/WIN32 name
space. By default, or when case_sensitive is set to
LONG/WIN32 namespace. By default, or when case_sensitive is set to
FALSE, files remain accessible via their short file name, if it
exists.
- Remove really dumb logic bug in boot sector recovery code.
- Fix dcache aliasing issues wrt short/long file names via changes
to fs/ntfs/dir.c::ntfs_lookup_inode_by_name() and
fs/ntfs/namei.c::ntfs_lookup(). (The latter is still TODO:)
...
...
fs/ntfs/super.c
View file @
19a27c50
...
...
@@ -441,7 +441,7 @@ static struct buffer_head *read_ntfs_boot_sector(struct super_block *sb,
ntfs_error
(
sb
,
"Primary boot sector is invalid."
);
}
else
if
(
!
silent
)
ntfs_error
(
sb
,
read_err_str
,
"primary"
);
if
(
NTFS_SB
(
sb
)
->
on_errors
&
~
ON_ERRORS_RECOVER
)
{
if
(
!
(
NTFS_SB
(
sb
)
->
on_errors
&
ON_ERRORS_RECOVER
)
)
{
if
(
bh_primary
)
brelse
(
bh_primary
);
if
(
!
silent
)
...
...
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