Lines Matching refs:pages
24 int pages, struct page **page);
37 int i, n, pages, missing_pages, bytes, res = -ENOMEM; in squashfs_readpage_block() local
45 pages = end_index - start_index + 1; in squashfs_readpage_block()
47 page = kmalloc_array(pages, sizeof(void *), GFP_KERNEL); in squashfs_readpage_block()
55 actor = squashfs_page_actor_init_special(page, pages, 0); in squashfs_readpage_block()
60 for (missing_pages = 0, i = 0, n = start_index; i < pages; i++, n++) { in squashfs_readpage_block()
85 res = squashfs_read_cache(target_page, block, bsize, pages, in squashfs_readpage_block()
101 pageaddr = kmap_atomic(page[pages - 1]); in squashfs_readpage_block()
107 for (i = 0; i < pages; i++) { in squashfs_readpage_block()
124 for (i = 0; i < pages; i++) { in squashfs_readpage_block()
141 int pages, struct page **page) in squashfs_read_cache() argument
155 for (n = 0; n < pages && bytes > 0; n++, in squashfs_read_cache()