Lines Matching refs:pages
693 struct page *pages[2]; in text_poke() local
697 pages[0] = vmalloc_to_page(addr); in text_poke()
698 pages[1] = vmalloc_to_page(addr + PAGE_SIZE); in text_poke()
700 pages[0] = virt_to_page(addr); in text_poke()
701 WARN_ON(!PageReserved(pages[0])); in text_poke()
702 pages[1] = virt_to_page(addr + PAGE_SIZE); in text_poke()
704 BUG_ON(!pages[0]); in text_poke()
706 set_fixmap(FIX_TEXT_POKE0, page_to_phys(pages[0])); in text_poke()
707 if (pages[1]) in text_poke()
708 set_fixmap(FIX_TEXT_POKE1, page_to_phys(pages[1])); in text_poke()
712 if (pages[1]) in text_poke()