dect
/
linux-2.6
Archived
13
0
Fork 0

JFS: Fix typo in last patch

Signed-off-by: Dave Kleikamp <shaggy@austin.ibm.com>
This commit is contained in:
Dave Kleikamp 2005-07-22 11:08:44 -05:00
parent 21d1ee8b37
commit c40c202493
1 changed files with 1 additions and 1 deletions

View File

@ -640,7 +640,7 @@ struct metapage *__get_metapage(struct inode *inode, unsigned long lblock,
} else {
page = read_cache_page(mapping, page_index,
(filler_t *)mapping->a_ops->readpage, NULL);
if (IS_ERR(page) || !PageUptodate(mp->page)) {
if (IS_ERR(page) || !PageUptodate(page)) {
jfs_err("read_cache_page failed!");
return NULL;
}