mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
Define VM_READ, VM_WRITE and VM_EXEC in the LinuxKPI.
MFC after: 1 week Sponsored by: Mellanox Technologies
This commit is contained in:
parent
fc51649e31
commit
480e2fd3d5
1 changed files with 4 additions and 0 deletions
|
|
@ -50,6 +50,10 @@
|
|||
*/
|
||||
CTASSERT((VM_PROT_ALL & -(1 << 8)) == 0);
|
||||
|
||||
#define VM_READ VM_PROT_READ
|
||||
#define VM_WRITE VM_PROT_WRITE
|
||||
#define VM_EXEC VM_PROT_EXECUTE
|
||||
|
||||
#define VM_PFNINTERNAL (1 << 8) /* FreeBSD private flag to vm_insert_pfn() */
|
||||
#define VM_MIXEDMAP (1 << 9)
|
||||
#define VM_NORESERVE (1 << 10)
|
||||
|
|
|
|||
Loading…
Reference in a new issue