Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __ASM_SET_MEMORY_H
0003 #define __ASM_SET_MEMORY_H
0004 
0005 /*
0006  * Functions to change memory attributes.
0007  */
0008 int set_memory_ro(unsigned long addr, int numpages);
0009 int set_memory_rw(unsigned long addr, int numpages);
0010 int set_memory_x(unsigned long addr, int numpages);
0011 int set_memory_nx(unsigned long addr, int numpages);
0012 
0013 #endif