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
4eeb1b30
Commit
4eeb1b30
authored
Oct 03, 2004
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Plain Diff
Merge cantab.net:/home/src/bklinux-2.6
into cantab.net:/home/src/ntfs-2.6
parents
bce2e8bc
b994d39a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
Documentation/filesystems/ntfs.txt
Documentation/filesystems/ntfs.txt
+1
-1
fs/ntfs/ChangeLog
fs/ntfs/ChangeLog
+4
-0
fs/ntfs/attrib.c
fs/ntfs/attrib.c
+3
-1
No files found.
Documentation/filesystems/ntfs.txt
View file @
4eeb1b30
...
@@ -278,7 +278,7 @@ ChangeLog
...
@@ -278,7 +278,7 @@ ChangeLog
Note, 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.1.20:
2.1.20:
- Fix
a stupid bug
introduced in 2.1.18 release.
- Fix
two stupid bugs
introduced in 2.1.18 release.
2.1.19:
2.1.19:
- Minor bugfix in handling of the default upcase table.
- Minor bugfix in handling of the default upcase table.
- Many internal cleanups and improvements. Many thanks to Linus
- Many internal cleanups and improvements. Many thanks to Linus
...
...
fs/ntfs/ChangeLog
View file @
4eeb1b30
...
@@ -27,6 +27,10 @@ ToDo/Notes:
...
@@ -27,6 +27,10 @@ ToDo/Notes:
where we did not clear ctx->al_entry but it was still set due to
where we did not clear ctx->al_entry but it was still set due to
changes in ntfs_attr_lookup() and ntfs_external_attr_find() in
changes in ntfs_attr_lookup() and ntfs_external_attr_find() in
particular.
particular.
- Fix another stupid bug in fs/ntfs/attrib.c::ntfs_external_attr_find()
where we forgot to unmap the extent mft record when we had finished
enumerating an attribute which caused a bug check to trigger when the
VFS calls ->clear_inode.
2.1.19 - Many cleanups, improvements, and a minor bug fix.
2.1.19 - Many cleanups, improvements, and a minor bug fix.
...
...
fs/ntfs/attrib.c
View file @
4eeb1b30
...
@@ -1738,11 +1738,13 @@ static int ntfs_external_attr_find(const ATTR_TYPE type,
...
@@ -1738,11 +1738,13 @@ static int ntfs_external_attr_find(const ATTR_TYPE type,
* correctly yet as we do not know what @ctx->attr will be set to by
* correctly yet as we do not know what @ctx->attr will be set to by
* the call to ntfs_attr_find() below.
* the call to ntfs_attr_find() below.
*/
*/
if
(
ni
!=
base_ni
)
unmap_extent_mft_record
(
ni
);
ctx
->
mrec
=
ctx
->
base_mrec
;
ctx
->
mrec
=
ctx
->
base_mrec
;
ctx
->
attr
=
(
ATTR_RECORD
*
)((
u8
*
)
ctx
->
mrec
+
ctx
->
attr
=
(
ATTR_RECORD
*
)((
u8
*
)
ctx
->
mrec
+
le16_to_cpu
(
ctx
->
mrec
->
attrs_offset
));
le16_to_cpu
(
ctx
->
mrec
->
attrs_offset
));
ctx
->
is_first
=
TRUE
;
ctx
->
is_first
=
TRUE
;
ctx
->
ntfs_ino
=
ctx
->
base_ntfs_ino
;
ctx
->
ntfs_ino
=
base_ni
;
ctx
->
base_ntfs_ino
=
NULL
;
ctx
->
base_ntfs_ino
=
NULL
;
ctx
->
base_mrec
=
NULL
;
ctx
->
base_mrec
=
NULL
;
ctx
->
base_attr
=
NULL
;
ctx
->
base_attr
=
NULL
;
...
...
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