summaryrefslogtreecommitdiff
path: root/src/syscall.c
blob: d0e35d256238fabe7f0edaf812b594ce06e48e03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * Will go away once libc support is there
 */
#include <unistd.h>
#include <sys/syscall.h>
#include <sys/uio.h>
#include "compat.h"
#include "io_uring.h"

#if defined(__x86_64)
#ifndef __NR_sys_io_uring_setup
#define __NR_sys_io_uring_setup		335
#endif
#ifndef __NR_sys_io_uring_enter
#define __NR_sys_io_uring_enter		336
#endif
#ifndef __NR_sys_io_uring_register
#define __NR_sys_io_uring_register	337
#endif
#elif defined(__i386__)
#ifndef __NR_sys_io_uring_setup
#define __NR_sys_io_uring_setup		387
#endif
#ifndef __NR_sys_io_uring_enter
#define __NR_sys_io_uring_enter		388
#endif
#ifndef __NR_sys_io_uring_register
#define __NR_sys_io_uring_register	389
#endif
#else
#error "Arch not supported yet"
#endif

int io_uring_register(int fd, unsigned int opcode, void *arg,
		      unsigned int nr_args)
{
	return syscall(__NR_sys_io_uring_register, fd, opcode, arg, nr_args);
}

int io_uring_setup(unsigned int entries, struct io_uring_params *p)
{
	return syscall(__NR_sys_io_uring_setup, entries, p);
}

int io_uring_enter(int fd, unsigned int to_submit, unsigned int min_complete,
		   unsigned int flags)
{
	return syscall(__NR_sys_io_uring_enter, fd, to_submit, min_complete,
			flags);
}