cacheflush.h 486 B

1234567891011121314151617
  1. #ifndef _S390_CACHEFLUSH_H
  2. #define _S390_CACHEFLUSH_H
  3. /* Caches aren't brain-dead on the s390. */
  4. #include <asm-generic/cacheflush.h>
  5. #ifdef CONFIG_DEBUG_PAGEALLOC
  6. void kernel_map_pages(struct page *page, int numpages, int enable);
  7. #endif
  8. int set_memory_ro(unsigned long addr, int numpages);
  9. int set_memory_rw(unsigned long addr, int numpages);
  10. int set_memory_nx(unsigned long addr, int numpages);
  11. int set_memory_x(unsigned long addr, int numpages);
  12. #endif /* _S390_CACHEFLUSH_H */