summaryrefslogtreecommitdiff
path: root/src/register.c
blob: f5fc19694e2ff66dd923599583ab9419913368c0 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>

#include "liburing/compat.h"
#include "liburing/io_uring.h"
#include "liburing.h"

int io_uring_register_buffers(struct io_uring *ring, const struct iovec *iovecs,
			      unsigned nr_iovecs)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_REGISTER_BUFFERS,
				iovecs, nr_iovecs);
	if (ret < 0)
		return -errno;

	return 0;
}

int io_uring_unregister_buffers(struct io_uring *ring)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_UNREGISTER_BUFFERS, NULL,
				0);
	if (ret < 0)
		return -errno;

	return 0;
}

int io_uring_register_files(struct io_uring *ring, const int *files,
			      unsigned nr_files)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_REGISTER_FILES, files,
				nr_files);
	if (ret < 0)
		return -errno;

	return 0;
}

int io_uring_unregister_files(struct io_uring *ring)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_UNREGISTER_FILES, NULL,
				0);
	if (ret < 0)
		return -errno;

	return 0;
}

int io_uring_register_eventfd(struct io_uring *ring, int event_fd)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_REGISTER_EVENTFD,
				&event_fd, 1);
	if (ret < 0)
		return -errno;

	return 0;
}

int io_uring_unregister_eventfd(struct io_uring *ring)
{
	int ret;

	ret = io_uring_register(ring->ring_fd, IORING_UNREGISTER_EVENTFD, NULL,
				0);
	if (ret < 0)
		return -errno;

	return 0;
}