/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */1/*2* This program is free software; you can redistribute it and/or3* modify it under the terms of the GNU General Public License4* as published by the Free Software Foundation; either version5* 2 of the License, or (at your option) any later version.6*/7#ifndef _UAPI_ASM_POWERPC_MMAN_H8#define _UAPI_ASM_POWERPC_MMAN_H910#include <asm-generic/mman-common.h>111213#define PROT_SAO 0x10 /* Strong Access Ordering */1415#define MAP_RENAME MAP_ANONYMOUS /* In SunOS terminology */16#define MAP_NORESERVE 0x40 /* don't reserve swap pages */17#define MAP_LOCKED 0x801819#define MAP_GROWSDOWN 0x0100 /* stack-like segment */20#define MAP_DENYWRITE 0x0800 /* ETXTBSY */21#define MAP_EXECUTABLE 0x1000 /* mark it as an executable */222324#define MCL_CURRENT 0x2000 /* lock all currently mapped pages */25#define MCL_FUTURE 0x4000 /* lock all additions to address space */26#define MCL_ONFAULT 0x8000 /* lock all pages that are faulted in */2728/* Override any generic PKEY permission defines */29#define PKEY_DISABLE_EXECUTE 0x430#undef PKEY_ACCESS_MASK31#define PKEY_ACCESS_MASK (PKEY_DISABLE_ACCESS |\32PKEY_DISABLE_WRITE |\33PKEY_DISABLE_EXECUTE)34#endif /* _UAPI_ASM_POWERPC_MMAN_H */353637