Commit 74f9c9c2 authored by Roman Zippel's avatar Roman Zippel Committed by Linus Torvalds

[PATCH] hfs: don't reference missing page

If there was a read error, the bnode might miss some pages, so skip them.
Signed-off-by: default avatarRoman Zippel <zippel@linux-m68k.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent f76d28d2
...@@ -480,6 +480,8 @@ void hfs_bnode_put(struct hfs_bnode *node) ...@@ -480,6 +480,8 @@ void hfs_bnode_put(struct hfs_bnode *node)
return; return;
} }
for (i = 0; i < tree->pages_per_bnode; i++) { for (i = 0; i < tree->pages_per_bnode; i++) {
if (!node->page[i])
continue;
mark_page_accessed(node->page[i]); mark_page_accessed(node->page[i]);
#if REF_PAGES #if REF_PAGES
put_page(node->page[i]); put_page(node->page[i]);
......
...@@ -643,6 +643,8 @@ void hfs_bnode_put(struct hfs_bnode *node) ...@@ -643,6 +643,8 @@ void hfs_bnode_put(struct hfs_bnode *node)
return; return;
} }
for (i = 0; i < tree->pages_per_bnode; i++) { for (i = 0; i < tree->pages_per_bnode; i++) {
if (!node->page[i])
continue;
mark_page_accessed(node->page[i]); mark_page_accessed(node->page[i]);
#if REF_PAGES #if REF_PAGES
put_page(node->page[i]); put_page(node->page[i]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment