[PATCH] read_mapping_page for address space
[deliverable/linux.git] / fs / hfsplus / bnode.c
index 746abc9ecf70f344418c37c8f47062aeb9c5e3ef..77bf434da6796d89a9181ae50f9af0dd60a6bcf5 100644 (file)
@@ -440,7 +440,7 @@ static struct hfs_bnode *__hfs_bnode_create(struct hfs_btree *tree, u32 cnid)
        block = off >> PAGE_CACHE_SHIFT;
        node->page_offset = off & ~PAGE_CACHE_MASK;
        for (i = 0; i < tree->pages_per_bnode; block++, i++) {
-               page = read_cache_page(mapping, block, (filler_t *)mapping->a_ops->readpage, NULL);
+               page = read_mapping_page(mapping, block, NULL);
                if (IS_ERR(page))
                        goto fail;
                if (PageError(page)) {
This page took 0.041462 seconds and 5 git commands to generate.