Lines Matching refs:page
19 struct page **new_pages; in module_extend_max_pages()
34 static struct page *module_get_next_page(struct load_info *info) in module_get_next_page()
36 struct page *page; in module_get_next_page() local
45 page = alloc_page(GFP_KERNEL | __GFP_HIGHMEM); in module_get_next_page()
46 if (!page) in module_get_next_page()
49 info->pages[info->used_pages++] = page; in module_get_next_page()
50 return page; in module_get_next_page()
115 struct page *page = module_get_next_page(info); in module_gzip_decompress() local
117 if (IS_ERR(page)) { in module_gzip_decompress()
118 retval = PTR_ERR(page); in module_gzip_decompress()
122 s.next_out = kmap_local_page(page); in module_gzip_decompress()
174 struct page *page = module_get_next_page(info); in module_xz_decompress() local
176 if (IS_ERR(page)) { in module_xz_decompress()
177 retval = PTR_ERR(page); in module_xz_decompress()
181 xz_buf.out = kmap_local_page(page); in module_xz_decompress()
258 struct page *page = module_get_next_page(info); in module_zstd_decompress() local
260 if (IS_ERR(page)) { in module_zstd_decompress()
261 retval = PTR_ERR(page); in module_zstd_decompress()
265 zstd_dec.dst = kmap_local_page(page); in module_zstd_decompress()