cacheflush.h 486 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#ifndef _S390_CACHEFLUSH_H
#define _S390_CACHEFLUSH_H

/* Caches aren't brain-dead on the s390. */
5
#include <asm-generic/cacheflush.h>
L
Linus Torvalds 已提交
6

7 8 9 10
#ifdef CONFIG_DEBUG_PAGEALLOC
void kernel_map_pages(struct page *page, int numpages, int enable);
#endif

11 12 13
int set_memory_ro(unsigned long addr, int numpages);
int set_memory_rw(unsigned long addr, int numpages);
int set_memory_nx(unsigned long addr, int numpages);
14
int set_memory_x(unsigned long addr, int numpages);
15

L
Linus Torvalds 已提交
16
#endif /* _S390_CACHEFLUSH_H */