blob: 1ae029d58028cbea96d05a59404673e70e0938c0 [file] [log] [blame]
Damjan Marion01914ce2017-09-14 19:04:50 +02001/*
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 Marion68b4da62018-09-30 18:26:20 +020022static inline int
23getcpu (unsigned *cpu, unsigned *node, void *tcache)
24{
25 return syscall (__NR_getcpu, cpu, node, tcache);
26}
27
Damjan Marion01914ce2017-09-14 19:04:50 +020028static inline long
29set_mempolicy (int mode, const unsigned long *nodemask, unsigned long maxnode)
30{
31 return syscall (__NR_set_mempolicy, mode, nodemask, maxnode);
32}
33
34static inline int
35get_mempolicy (int *mode, unsigned long *nodemask, unsigned long maxnode,
36 void *addr, unsigned long flags)
37{
38 return syscall (__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags);
39}
40
41static inline long
42move_pages (int pid, unsigned long count, void **pages, const int *nodes,
43 int *status, int flags)
44{
45 return syscall (__NR_move_pages, pid, count, pages, nodes, status, flags);
46}
47
Marco Varlese3f6ede32018-03-06 08:09:04 +010048#ifndef HAVE_MEMFD_CREATE
Damjan Marion01914ce2017-09-14 19:04:50 +020049static inline int
50memfd_create (const char *name, unsigned int flags)
51{
52 return syscall (__NR_memfd_create, name, flags);
53}
Marco Varlese3f6ede32018-03-06 08:09:04 +010054#endif
Damjan Marion01914ce2017-09-14 19:04:50 +020055
56#endif /* included_linux_syscall_h */
57
58/*
59 * fd.io coding-style-patch-verification: ON
60 *
61 * Local Variables:
62 * eval: (c-set-style "gnu")
63 * End:
64 */