Commit 0cc6379a authored by David Mosberger's avatar David Mosberger

This patch got dropped from the VM_DATA_DEFAULT_FLAGS patch sent earlier.

parent 56d7957e
...@@ -105,7 +105,7 @@ struct vm_area_struct { ...@@ -105,7 +105,7 @@ struct vm_area_struct {
#define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */ #define VM_DONTEXPAND 0x00040000 /* Cannot expand with mremap() */
#define VM_RESERVED 0x00080000 /* Don't unmap it from swap_out */ #define VM_RESERVED 0x00080000 /* Don't unmap it from swap_out */
#define VM_STACK_FLAGS 0x00000177 #define VM_STACK_FLAGS (0x00000100 | VM_DATA_DEFAULT_FLAGS)
#define VM_READHINTMASK (VM_SEQ_READ | VM_RAND_READ) #define VM_READHINTMASK (VM_SEQ_READ | VM_RAND_READ)
#define VM_ClearReadHint(v) (v)->vm_flags &= ~VM_READHINTMASK #define VM_ClearReadHint(v) (v)->vm_flags &= ~VM_READHINTMASK
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment