2005-04-17 02:20:36 +04:00
|
|
|
#ifndef _S390_CACHEFLUSH_H
|
|
|
|
#define _S390_CACHEFLUSH_H
|
|
|
|
|
|
|
|
/* Caches aren't brain-dead on the s390. */
|
2011-01-31 13:30:07 +03:00
|
|
|
#include <asm-generic/cacheflush.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2011-03-15 19:08:22 +03:00
|
|
|
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);
|
2011-05-20 02:55:26 +04:00
|
|
|
int set_memory_x(unsigned long addr, int numpages);
|
2011-03-15 19:08:22 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif /* _S390_CACHEFLUSH_H */
|