diff options
Diffstat (limited to 'src/vppinfra/linux/syscall.h')
-rw-r--r-- | src/vppinfra/linux/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vppinfra/linux/syscall.h b/src/vppinfra/linux/syscall.h index f8ec5919f3f..4511b85ac1d 100644 --- a/src/vppinfra/linux/syscall.h +++ b/src/vppinfra/linux/syscall.h @@ -39,11 +39,13 @@ move_pages (int pid, unsigned long count, void **pages, const int *nodes, return syscall (__NR_move_pages, pid, count, pages, nodes, status, flags); } +#ifndef HAVE_MEMFD_CREATE static inline int memfd_create (const char *name, unsigned int flags) { return syscall (__NR_memfd_create, name, flags); } +#endif #endif /* included_linux_syscall_h */ |