#ifndef _SYS_PERMISSION_H #define _SYS_PERMISSION_H 1 #define PERM_MEM_PHYS_RESV 1 /* Reserve physical memory. */ #define PERM_MEM_PHYS_FREE 2 /* Free physical memory. */ #define PERM_MEM_PHYS_ALLOC 4 /* Allocate physical memory. */ #define PERM_MEM_VIRT_PD 8 /* Work on any PD. */ #define PERM_MEM_VIRT_MAP 0x10 /* Map physical memory to virtual memory. */ #endif