X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=fs%2Fntfs%2Faops.h;h=9393f4b1e298faa9d84d2f6dcb3b771a8be7d4b0;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=3b74e66ca2ff83c648ac1910de6ecbbfc6a26dbb;hpb=76828883507a47dae78837ab5dec5a5b4513c667;p=linux-2.6.git diff --git a/fs/ntfs/aops.h b/fs/ntfs/aops.h index 3b74e66ca..9393f4b1e 100644 --- a/fs/ntfs/aops.h +++ b/fs/ntfs/aops.h @@ -80,14 +80,13 @@ static inline void ntfs_unmap_page(struct page *page) * * The unlocked and uptodate page is returned on success or an encoded error * on failure. Caller has to test for error using the IS_ERR() macro on the - * return value. If that evaluates to TRUE, the negative error code can be + * return value. If that evaluates to 'true', the negative error code can be * obtained using PTR_ERR() on the return value of ntfs_map_page(). */ static inline struct page *ntfs_map_page(struct address_space *mapping, unsigned long index) { - struct page *page = read_cache_page(mapping, index, - (filler_t*)mapping->a_ops->readpage, NULL); + struct page *page = read_mapping_page(mapping, index, NULL); if (!IS_ERR(page)) { wait_on_page_locked(page);