blob: df7a3896f5dd7717ba383f01dfa14385d7261905 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
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
Olivier Deprez157378f2022-04-04 15:47:50 +020012#define VM_DATA_DEFAULT_FLAGS VM_DATA_FLAGS_TSK_EXEC
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000013
14#else
15
Olivier Deprez157378f2022-04-04 15:47:50 +020016#define VM_STACK_DEFAULT_FLAGS (VM_GROWSDOWN | VM_DATA_FLAGS_EXEC)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000017
18#endif
19#endif