xref: /linux/arch/x86/um/asm/vm-flags.h (revision 53597deca0e38c30e6cd4ba2114fa42d2bcd85bb)
1 /*
2  * Copyright (C) 2004 Jeff Dike (jdike@addtoit.com)
3  * Copyright 2003 PathScale, Inc.
4  * Licensed under the GPL
5  */
6 
7 #ifndef __VM_FLAGS_X86_H
8 #define __VM_FLAGS_X86_H
9 
10 #ifdef CONFIG_X86_32
11 
12 #define VMA_DATA_DEFAULT_FLAGS	VMA_DATA_FLAGS_TSK_EXEC
13 
14 #else
15 
16 #define VMA_STACK_DEFAULT_FLAGS append_vma_flags(VMA_DATA_FLAGS_EXEC, VMA_GROWSDOWN_BIT)
17 
18 #endif
19 #endif
20