Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | #ifndef included_linux_syscall_h |
| 17 | #define included_linux_syscall_h |
| 18 | |
| 19 | #include <unistd.h> |
| 20 | #include <sys/syscall.h> |
| 21 | |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame^] | 22 | #ifndef HAVE_GETCPU |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 23 | static inline int |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame^] | 24 | getcpu (unsigned *cpu, unsigned *node) |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 25 | { |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame^] | 26 | return syscall (__NR_getcpu, cpu, node, 0); |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 27 | } |
Damjan Marion | 1ee346a | 2019-03-18 17:06:51 +0100 | [diff] [blame^] | 28 | #endif |
Damjan Marion | 68b4da6 | 2018-09-30 18:26:20 +0200 | [diff] [blame] | 29 | |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 30 | static inline long |
| 31 | set_mempolicy (int mode, const unsigned long *nodemask, unsigned long maxnode) |
| 32 | { |
| 33 | return syscall (__NR_set_mempolicy, mode, nodemask, maxnode); |
| 34 | } |
| 35 | |
| 36 | static inline int |
| 37 | get_mempolicy (int *mode, unsigned long *nodemask, unsigned long maxnode, |
| 38 | void *addr, unsigned long flags) |
| 39 | { |
| 40 | return syscall (__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags); |
| 41 | } |
| 42 | |
| 43 | static inline long |
| 44 | move_pages (int pid, unsigned long count, void **pages, const int *nodes, |
| 45 | int *status, int flags) |
| 46 | { |
| 47 | return syscall (__NR_move_pages, pid, count, pages, nodes, status, flags); |
| 48 | } |
| 49 | |
Marco Varlese | 3f6ede3 | 2018-03-06 08:09:04 +0100 | [diff] [blame] | 50 | #ifndef HAVE_MEMFD_CREATE |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 51 | static inline int |
| 52 | memfd_create (const char *name, unsigned int flags) |
| 53 | { |
| 54 | return syscall (__NR_memfd_create, name, flags); |
| 55 | } |
Marco Varlese | 3f6ede3 | 2018-03-06 08:09:04 +0100 | [diff] [blame] | 56 | #endif |
Damjan Marion | 01914ce | 2017-09-14 19:04:50 +0200 | [diff] [blame] | 57 | |
| 58 | #endif /* included_linux_syscall_h */ |
| 59 | |
| 60 | /* |
| 61 | * fd.io coding-style-patch-verification: ON |
| 62 | * |
| 63 | * Local Variables: |
| 64 | * eval: (c-set-style "gnu") |
| 65 | * End: |
| 66 | */ |