| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * arch/arm/include/asm/page.h |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 1995-2003 Russell King |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License version 2 as |
|---|
| 8 | | - * published by the Free Software Foundation. |
|---|
| 9 | 6 | */ |
|---|
| 10 | 7 | #ifndef _ASMARM_PAGE_H |
|---|
| 11 | 8 | #define _ASMARM_PAGE_H |
|---|
| .. | .. |
|---|
| 164 | 161 | |
|---|
| 165 | 162 | #endif /* !__ASSEMBLY__ */ |
|---|
| 166 | 163 | |
|---|
| 167 | | -#define VM_DATA_DEFAULT_FLAGS \ |
|---|
| 168 | | - (((current->personality & READ_IMPLIES_EXEC) ? VM_EXEC : 0) | \ |
|---|
| 169 | | - VM_READ | VM_WRITE | VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC) |
|---|
| 164 | +#define VM_DATA_DEFAULT_FLAGS VM_DATA_FLAGS_TSK_EXEC |
|---|
| 170 | 165 | |
|---|
| 171 | 166 | #include <asm-generic/getorder.h> |
|---|
| 172 | 167 | |
|---|