Lines Matching defs:page
104 static int udf_symlink_filler(struct file *file, struct page *page)
106 struct inode *inode = page->mapping->host;
110 unsigned char *p = page_address(page);
143 SetPageUptodate(page);
144 unlock_page(page);
149 SetPageError(page);
151 unlock_page(page);
160 struct page *page;
163 page = read_mapping_page(inode->i_mapping, 0, NULL);
164 if (IS_ERR(page))
165 return PTR_ERR(page);
175 stat->size = strlen(page_address(page));
176 put_page(page);