public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
blob 706238aa36f5a719337b33e3f58e8b6d328473b4 1434 bytes (raw)

 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
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright Red Hat
 * Author: David Gibson <david@gibson.dropbear.id.au>
 */

#ifndef EPOLL_TYPE_H
#define EPOLL_TYPE_H

/**
 * enum epoll_type - Different types of fds we poll over
 */
enum epoll_type {
	/* Special value to indicate an invalid type */
	EPOLL_TYPE_NONE = 0,
	/* Connected TCP sockets */
	EPOLL_TYPE_TCP,
	/* Connected TCP sockets (spliced) */
	EPOLL_TYPE_TCP_SPLICE,
	/* Listening TCP sockets */
	EPOLL_TYPE_TCP_LISTEN,
	/* timerfds used for TCP timers */
	EPOLL_TYPE_TCP_TIMER,
	/* UDP "listening" sockets */
	EPOLL_TYPE_UDP_LISTEN,
	/* UDP socket for replies on a specific flow */
	EPOLL_TYPE_UDP_REPLY,
	/* ICMP/ICMPv6 ping sockets */
	EPOLL_TYPE_PING,
	/* inotify fd watching for end of netns (pasta) */
	EPOLL_TYPE_NSQUIT_INOTIFY,
	/* timer fd watching for end of netns, fallback for inotify (pasta) */
	EPOLL_TYPE_NSQUIT_TIMER,
	/* tuntap character device */
	EPOLL_TYPE_TAP_PASTA,
	/* socket connected to qemu  */
	EPOLL_TYPE_TAP_PASST,
	/* socket listening for qemu socket connections */
	EPOLL_TYPE_TAP_LISTEN,
	/* vhost-user command socket */
	EPOLL_TYPE_VHOST_CMD,
	/* vhost-user kick event socket */
	EPOLL_TYPE_VHOST_KICK,
	/* vhost-user migration socket */
	EPOLL_TYPE_VHOST_MIGRATION,
	/* TCP_REPAIR helper listening socket */
	EPOLL_TYPE_REPAIR_LISTEN,
	/* TCP_REPAIR helper socket */
	EPOLL_TYPE_REPAIR,

	EPOLL_NUM_TYPES,
};

#endif /* EPOLL_TYPE_H */

debug log:

solving 706238a ...
found 706238a in https://archives.passt.top/passt-dev/20250128233940.1235855-8-sbrivio@redhat.com/
found fd9eac3 in https://passt.top/passt
preparing index
index prepared:
100644 fd9eac392f779b47152cdee8dc8fba6f0010c624	epoll_type.h

applying [1/1] https://archives.passt.top/passt-dev/20250128233940.1235855-8-sbrivio@redhat.com/
diff --git a/epoll_type.h b/epoll_type.h
index fd9eac3..706238a 100644

Checking patch epoll_type.h...
Applied patch epoll_type.h cleanly.

index at:
100644 706238aa36f5a719337b33e3f58e8b6d328473b4	epoll_type.h

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).