diff options
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/cacheflush.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/asm-x86/cacheflush.h b/include/asm-x86/cacheflush.h index fccb563e2305..7b928d55c190 100644 --- a/include/asm-x86/cacheflush.h +++ b/include/asm-x86/cacheflush.h | |||
@@ -27,6 +27,21 @@ | |||
27 | void global_flush_tlb(void); | 27 | void global_flush_tlb(void); |
28 | int change_page_attr(struct page *page, int numpages, pgprot_t prot); | 28 | int change_page_attr(struct page *page, int numpages, pgprot_t prot); |
29 | int change_page_attr_addr(unsigned long addr, int numpages, pgprot_t prot); | 29 | int change_page_attr_addr(unsigned long addr, int numpages, pgprot_t prot); |
30 | |||
31 | int set_pages_uc(struct page *page, int numpages); | ||
32 | int set_pages_wb(struct page *page, int numpages); | ||
33 | int set_pages_x(struct page *page, int numpages); | ||
34 | int set_pages_nx(struct page *page, int numpages); | ||
35 | int set_pages_ro(struct page *page, int numpages); | ||
36 | int set_pages_rw(struct page *page, int numpages); | ||
37 | |||
38 | int set_memory_uc(unsigned long addr, int numpages); | ||
39 | int set_memory_wb(unsigned long addr, int numpages); | ||
40 | int set_memory_x(unsigned long addr, int numpages); | ||
41 | int set_memory_nx(unsigned long addr, int numpages); | ||
42 | int set_memory_ro(unsigned long addr, int numpages); | ||
43 | int set_memory_rw(unsigned long addr, int numpages); | ||
44 | |||
30 | void clflush_cache_range(void *addr, int size); | 45 | void clflush_cache_range(void *addr, int size); |
31 | 46 | ||
32 | #ifdef CONFIG_DEBUG_RODATA | 47 | #ifdef CONFIG_DEBUG_RODATA |