Message ID | 20200904091341.28756-3-huobean@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | use generic_file_buffered_read() | expand |
diff --git a/fs/isofs/compress.c b/fs/isofs/compress.c index bc12ac7e2312..7541581c1064 100644 --- a/fs/isofs/compress.c +++ b/fs/isofs/compress.c @@ -312,7 +312,7 @@ static int zisofs_readpage(struct file *file, struct page *page) end_index = (inode->i_size + PAGE_SIZE - 1) >> PAGE_SHIFT; /* * If this page is wholly outside i_size we just return zero; - * do_generic_file_read() will handle this for us + * generic_file_buffered_read() will handle this for us */ if (index >= end_index) { SetPageUptodate(page);