Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
8bb73521
Commit
8bb73521
authored
Sep 08, 2005
by
Anton Altaparmakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NTFS: Remove two bogus BUG_ON()s from fs/ntfs/mft.c.
Signed-off-by:
Anton Altaparmakov
<
aia21@cantab.net
>
parent
84d6ebe6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
fs/ntfs/ChangeLog
fs/ntfs/ChangeLog
+1
-0
fs/ntfs/mft.c
fs/ntfs/mft.c
+0
-2
No files found.
fs/ntfs/ChangeLog
View file @
8bb73521
...
@@ -45,6 +45,7 @@ ToDo/Notes:
...
@@ -45,6 +45,7 @@ ToDo/Notes:
need to panic() if the allocation fails as it now cannot fail.
need to panic() if the allocation fails as it now cannot fail.
- Fix two nasty runlist merging bugs that had gone unnoticed so far.
- Fix two nasty runlist merging bugs that had gone unnoticed so far.
Thanks to Stefano Picerno for the bug report.
Thanks to Stefano Picerno for the bug report.
- Remove two bogus BUG_ON()s from fs/ntfs/mft.c.
2.1.23 - Implement extension of resident files and make writing safe as well as
2.1.23 - Implement extension of resident files and make writing safe as well as
many bug fixes, cleanups, and enhancements...
many bug fixes, cleanups, and enhancements...
...
...
fs/ntfs/mft.c
View file @
8bb73521
...
@@ -511,7 +511,6 @@ int ntfs_sync_mft_mirror(ntfs_volume *vol, const unsigned long mft_no,
...
@@ -511,7 +511,6 @@ int ntfs_sync_mft_mirror(ntfs_volume *vol, const unsigned long mft_no,
}
while
(
bh
);
}
while
(
bh
);
tail
->
b_this_page
=
head
;
tail
->
b_this_page
=
head
;
attach_page_buffers
(
page
,
head
);
attach_page_buffers
(
page
,
head
);
BUG_ON
(
!
page_has_buffers
(
page
));
}
}
bh
=
head
=
page_buffers
(
page
);
bh
=
head
=
page_buffers
(
page
);
BUG_ON
(
!
bh
);
BUG_ON
(
!
bh
);
...
@@ -692,7 +691,6 @@ int write_mft_record_nolock(ntfs_inode *ni, MFT_RECORD *m, int sync)
...
@@ -692,7 +691,6 @@ int write_mft_record_nolock(ntfs_inode *ni, MFT_RECORD *m, int sync)
*/
*/
if
(
!
NInoTestClearDirty
(
ni
))
if
(
!
NInoTestClearDirty
(
ni
))
goto
done
;
goto
done
;
BUG_ON
(
!
page_has_buffers
(
page
));
bh
=
head
=
page_buffers
(
page
);
bh
=
head
=
page_buffers
(
page
);
BUG_ON
(
!
bh
);
BUG_ON
(
!
bh
);
rl
=
NULL
;
rl
=
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