Lines Matching refs:page
42 void clear_page_orig(void *page);
43 void clear_page_rep(void *page);
44 void clear_page_erms(void *page);
46 static inline void clear_page(void *page)
49 * Clean up KMSAN metadata for the page being cleared. The assembly call
50 * below clobbers @page, so we perform unpoisoning before it.
52 kmsan_unpoison_memory(page, PAGE_SIZE);
56 "=D" (page),
57 "0" (page)
75 * CPUs malfunction if they execute code from the highest canonical page.
80 * With page table isolation enabled, we map the LDT in ... [stay tuned]