Lines Matching refs:pages
679 struct page *pages[2]; in text_poke() local
683 pages[0] = vmalloc_to_page(addr); in text_poke()
684 pages[1] = vmalloc_to_page(addr + PAGE_SIZE); in text_poke()
686 pages[0] = virt_to_page(addr); in text_poke()
687 WARN_ON(!PageReserved(pages[0])); in text_poke()
688 pages[1] = virt_to_page(addr + PAGE_SIZE); in text_poke()
690 BUG_ON(!pages[0]); in text_poke()
692 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0])); in text_poke()
693 if (pages[1]) in text_poke()
694 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1])); in text_poke()
698 if (pages[1]) in text_poke()