summaryrefslogtreecommitdiff
path: root/arch/s390/include/asm/set_memory.h
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2023-04-02 21:55:17 +0300
committerVasily Gorbik <gor@linux.ibm.com>2023-04-13 18:36:26 +0300
commitf0a2a7c527849bf1b112a43f0b8d0658a7b4e6ec (patch)
tree5adaa7cfdf5b05b7165a9e90416d384f5c9696f2 /arch/s390/include/asm/set_memory.h
parent22e99fa56443f19b96e2e888854bfc202dd97069 (diff)
downloadlinux-f0a2a7c527849bf1b112a43f0b8d0658a7b4e6ec.tar.xz
s390/mm: implement set_memory_rwnx()
Given that set_memory_rox() is implemented, provide also set_memory_rwnx(). This allows to get rid of all open coded __set_memory() usages in s390 architecture code. Reviewed-by: Alexander Gordeev <agordeev@linux.ibm.com> Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/set_memory.h')
-rw-r--r--arch/s390/include/asm/set_memory.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/s390/include/asm/set_memory.h b/arch/s390/include/asm/set_memory.h
index f4362ce1e17a..25f2464dbb7e 100644
--- a/arch/s390/include/asm/set_memory.h
+++ b/arch/s390/include/asm/set_memory.h
@@ -40,6 +40,11 @@ static inline int set_memory_rox(unsigned long addr, int numpages)
return __set_memory(addr, numpages, SET_MEMORY_RO | SET_MEMORY_X);
}
+static inline int set_memory_rwnx(unsigned long addr, int numpages)
+{
+ return __set_memory(addr, numpages, SET_MEMORY_RW | SET_MEMORY_NX);
+}
+
static inline int set_memory_4k(unsigned long addr, int numpages)
{
return __set_memory(addr, numpages, SET_MEMORY_4K);