projects
/
GitHub
/
mt8127
/
android_kernel_alcatel_ttab.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69baee0
)
ext4: Fix ext4_mb_init_cache return error
author
Mingming Cao
<cmm@us.ibm.com>
Fri, 11 Jul 2008 23:27:31 +0000
(19:27 -0400)
committer
Theodore Ts'o
<tytso@mit.edu>
Fri, 11 Jul 2008 23:27:31 +0000
(19:27 -0400)
ext4_mb_init_cache() incorrectly always return EIO on success. This
causes the caller of ext4_mb_init_cache() fail when it checks the return
value.
Signed-off-by: Mingming Cao <cmm@us.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/mballoc.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/ext4/mballoc.c
b/fs/ext4/mballoc.c
index 6280ad3829d449dcb5aafa0984c02e895c06467e..d429014071c0f566a6a196a818b8034d2edc0d33 100644
(file)
--- a/
fs/ext4/mballoc.c
+++ b/
fs/ext4/mballoc.c
@@
-809,6
+809,7
@@
static int ext4_mb_init_cache(struct page *page, char *incore)
if (!buffer_uptodate(bh[i]))
goto out;
+ err = 0;
first_block = page->index * blocks_per_page;
for (i = 0; i < blocks_per_page; i++) {
int group;