mirror of
https://github.com/torvalds/linux.git
synced 2024-12-19 17:41:29 +00:00
12 lines
273 B
C
12 lines
273 B
C
|
#ifndef _ASM_C6X_PAGE_H
|
||
|
#define _ASM_C6X_PAGE_H
|
||
|
|
||
|
#define VM_DATA_DEFAULT_FLAGS \
|
||
|
(VM_READ | VM_WRITE | \
|
||
|
((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \
|
||
|
VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
|
||
|
|
||
|
#include <asm-generic/page.h>
|
||
|
|
||
|
#endif /* _ASM_C6X_PAGE_H */
|