Lines Matching refs:page
161 int reiserfs_commit_write(struct file *f, struct page *page,
172 struct page *page;
204 * we unpack by finding the page with the tail, and calling
205 * __reiserfs_write_begin on that page. This will force a
210 page = grab_cache_page(mapping, index);
212 if (!page) {
215 retval = __reiserfs_write_begin(page, write_from, 0);
219 /* conversion can change page contents, must flush */
220 flush_dcache_page(page);
221 retval = reiserfs_commit_write(NULL, page, write_from, write_from);
225 unlock_page(page);
226 put_page(page);