diff options
author | Damjan Marion <damarion@cisco.com> | 2018-03-04 16:41:35 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-03-04 17:58:02 +0000 |
commit | 7b185360843c2b1cbcbeede64340add8a56fe440 (patch) | |
tree | 1d1920fe15491747e00d9cc6536f1ca79a411645 /src/vppinfra/mem.h | |
parent | 30787378f49714319e75437b347b7027a949700d (diff) |
vppinfra: fix clib_mem_vm_ext_alloc non-shared allocations
Change-Id: I6d049c0875b91f67f008dc04ae7efe2f8ddc276e
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/mem.h')
-rw-r--r-- | src/vppinfra/mem.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vppinfra/mem.h b/src/vppinfra/mem.h index 028289c50a5..55a276f466c 100644 --- a/src/vppinfra/mem.h +++ b/src/vppinfra/mem.h @@ -328,6 +328,7 @@ typedef struct #define CLIB_MEM_VM_F_NUMA_PREFER (1 << 2) #define CLIB_MEM_VM_F_NUMA_FORCE (1 << 3) #define CLIB_MEM_VM_F_HUGETLB_PREALLOC (1 << 4) +#define CLIB_MEM_VM_F_LOCKED (1 << 5) u32 flags; /**< vm allocation flags: <br> CLIB_MEM_VM_F_SHARED: request shared memory, file descriptor will be provided on successful allocation. @@ -337,6 +338,7 @@ typedef struct <br> CLIB_MEM_VM_F_NUMA_FORCE: fail if setting numa policy fails. <br> CLIB_MEM_VM_F_HUGETLB_PREALLOC: pre-allocate hugepages if number of available pages is not sufficient. + <br> CLIB_MEM_VM_F_LOCKED: request locked memory. */ char *name; /**< Name for memory allocation, set by caller. */ uword size; /**< Allocation size, set by caller. */ |