Release 4.11 arch/s390/include/asm/cacheflush.h
#ifndef _S390_CACHEFLUSH_H
#define _S390_CACHEFLUSH_H
/* Caches aren't brain-dead on the s390. */
#include <asm-generic/cacheflush.h>
#define SET_MEMORY_RO 1UL
#define SET_MEMORY_RW 2UL
#define SET_MEMORY_NX 4UL
#define SET_MEMORY_X 8UL
int __set_memory(unsigned long addr, int numpages, unsigned long flags);
static inline int set_memory_ro(unsigned long addr, int numpages)
{
return __set_memory(addr, numpages, SET_MEMORY_RO);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Martin Schwidefsky | 24 | 100.00% | 1 | 100.00% |
Total | 24 | 100.00% | 1 | 100.00% |
static inline int set_memory_rw(unsigned long addr, int numpages)
{
return __set_memory(addr, numpages, SET_MEMORY_RW);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Martin Schwidefsky | 14 | 58.33% | 1 | 50.00% |
Jan Glauber | 10 | 41.67% | 1 | 50.00% |
Total | 24 | 100.00% | 2 | 100.00% |
static inline int set_memory_nx(unsigned long addr, int numpages)
{
return __set_memory(addr, numpages, SET_MEMORY_NX);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Martin Schwidefsky | 14 | 58.33% | 1 | 50.00% |
Jan Glauber | 10 | 41.67% | 1 | 50.00% |
Total | 24 | 100.00% | 2 | 100.00% |
static inline int set_memory_x(unsigned long addr, int numpages)
{
return __set_memory(addr, numpages, SET_MEMORY_X);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Martin Schwidefsky | 14 | 58.33% | 1 | 50.00% |
Jan Glauber | 10 | 41.67% | 1 | 50.00% |
Total | 24 | 100.00% | 2 | 100.00% |
#endif /* _S390_CACHEFLUSH_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Martin Schwidefsky | 98 | 70.00% | 2 | 40.00% |
Jan Glauber | 40 | 28.57% | 2 | 40.00% |
Akinobu Mita | 2 | 1.43% | 1 | 20.00% |
Total | 140 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.