✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server.blackpussy.asia ​🇻​♯➤ 5.14.0-611.20.1.el9_7.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 163.245.207.76 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.243
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗞 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ mail,mb_send_mail
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /usr/include/linux//io_uring.h
/* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR MIT */
/*
 * Header file for the io_uring interface.
 *
 * Copyright (C) 2019 Jens Axboe
 * Copyright (C) 2019 Christoph Hellwig
 */
#ifndef LINUX_IO_URING_H
#define LINUX_IO_URING_H

#include <linux/fs.h>
#include <linux/types.h>
/*
 * this file is shared with liburing and that has to autodetect
 * if linux/time_types.h is available or not, it can
 * define UAPI_LINUX_IO_URING_H_SKIP_LINUX_TIME_TYPES_H
 * if linux/time_types.h is not available
 */
#ifndef UAPI_LINUX_IO_URING_H_SKIP_LINUX_TIME_TYPES_H
#include <linux/time_types.h>
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*
 * IO submission data structure (Submission Queue Entry)
 */
struct io_uring_sqe {
	__u8	opcode;		/* type of operation for this sqe */
	__u8	flags;		/* IOSQE_ flags */
	__u16	ioprio;		/* ioprio for the request */
	__s32	fd;		/* file descriptor to do IO on */
	union {
		__u64	off;	/* offset into file */
		__u64	addr2;
		struct {
			__u32	cmd_op;
			__u32	__pad1;
		};
	};
	union {
		__u64	addr;	/* pointer to buffer or iovecs */
		__u64	splice_off_in;
		struct {
			__u32	level;
			__u32	optname;
		};
	};
	__u32	len;		/* buffer size or number of iovecs */
	union {
		__u32		rw_flags;
		__u32		fsync_flags;
		__u16		poll_events;	/* compatibility */
		__u32		poll32_events;	/* word-reversed for BE */
		__u32		sync_range_flags;
		__u32		msg_flags;
		__u32		timeout_flags;
		__u32		accept_flags;
		__u32		cancel_flags;
		__u32		open_flags;
		__u32		statx_flags;
		__u32		fadvise_advice;
		__u32		splice_flags;
		__u32		rename_flags;
		__u32		unlink_flags;
		__u32		hardlink_flags;
		__u32		xattr_flags;
		__u32		msg_ring_flags;
		__u32		uring_cmd_flags;
		__u32		waitid_flags;
		__u32		futex_flags;
		__u32		install_fd_flags;
		__u32		nop_flags;
	};
	__u64	user_data;	/* data to be passed back at completion time */
	/* pack this to avoid bogus arm OABI complaints */
	union {
		/* index into fixed buffers, if used */
		__u16	buf_index;
		/* for grouped buffer selection */
		__u16	buf_group;
	} __attribute__((packed));
	/* personality to use, if used */
	__u16	personality;
	union {
		__s32	splice_fd_in;
		__u32	file_index;
		__u32	optlen;
		struct {
			__u16	addr_len;
			__u16	__pad3[1];
		};
		struct {
			__u8	write_stream;
			__u8	__pad4[3];
		};
	};
	union {
		struct {
			__u64	addr3;
			__u64	__pad2[1];
		};
		struct {
			__u64	attr_ptr; /* pointer to attribute information */
			__u64	attr_type_mask; /* bit mask of attributes */
		};
		__u64	optval;
		/*
		 * If the ring is initialized with IORING_SETUP_SQE128, then
		 * this field is used for 80 bytes of arbitrary command data
		 */
		__u8	cmd[0];
	};
};

/* sqe->attr_type_mask flags */
#define IORING_RW_ATTR_FLAG_PI	(1U << 0)
/* PI attribute information */
struct io_uring_attr_pi {
		__u16	flags;
		__u16	app_tag;
		__u32	len;
		__u64	addr;
		__u64	seed;
		__u64	rsvd;
};

/*
 * If sqe->file_index is set to this for opcodes that instantiate a new
 * direct descriptor (like openat/openat2/accept), then io_uring will allocate
 * an available direct descriptor instead of having the application pass one
 * in. The picked direct descriptor will be returned in cqe->res, or -ENFILE
 * if the space is full.
 */
#define IORING_FILE_INDEX_ALLOC		(~0U)

enum io_uring_sqe_flags_bit {
	IOSQE_FIXED_FILE_BIT,
	IOSQE_IO_DRAIN_BIT,
	IOSQE_IO_LINK_BIT,
	IOSQE_IO_HARDLINK_BIT,
	IOSQE_ASYNC_BIT,
	IOSQE_BUFFER_SELECT_BIT,
	IOSQE_CQE_SKIP_SUCCESS_BIT,
};

/*
 * sqe->flags
 */
/* use fixed fileset */
#define IOSQE_FIXED_FILE	(1U << IOSQE_FIXED_FILE_BIT)
/* issue after inflight IO */
#define IOSQE_IO_DRAIN		(1U << IOSQE_IO_DRAIN_BIT)
/* links next sqe */
#define IOSQE_IO_LINK		(1U << IOSQE_IO_LINK_BIT)
/* like LINK, but stronger */
#define IOSQE_IO_HARDLINK	(1U << IOSQE_IO_HARDLINK_BIT)
/* always go async */
#define IOSQE_ASYNC		(1U << IOSQE_ASYNC_BIT)
/* select buffer from sqe->buf_group */
#define IOSQE_BUFFER_SELECT	(1U << IOSQE_BUFFER_SELECT_BIT)
/* don't post CQE if request succeeded */
#define IOSQE_CQE_SKIP_SUCCESS	(1U << IOSQE_CQE_SKIP_SUCCESS_BIT)

/*
 * io_uring_setup() flags
 */
#define IORING_SETUP_IOPOLL	(1U << 0)	/* io_context is polled */
#define IORING_SETUP_SQPOLL	(1U << 1)	/* SQ poll thread */
#define IORING_SETUP_SQ_AFF	(1U << 2)	/* sq_thread_cpu is valid */
#define IORING_SETUP_CQSIZE	(1U << 3)	/* app defines CQ size */
#define IORING_SETUP_CLAMP	(1U << 4)	/* clamp SQ/CQ ring sizes */
#define IORING_SETUP_ATTACH_WQ	(1U << 5)	/* attach to existing wq */
#define IORING_SETUP_R_DISABLED	(1U << 6)	/* start with ring disabled */
#define IORING_SETUP_SUBMIT_ALL	(1U << 7)	/* continue submit on error */
/*
 * Cooperative task running. When requests complete, they often require
 * forcing the submitter to transition to the kernel to complete. If this
 * flag is set, work will be done when the task transitions anyway, rather
 * than force an inter-processor interrupt reschedule. This avoids interrupting
 * a task running in userspace, and saves an IPI.
 */
#define IORING_SETUP_COOP_TASKRUN	(1U << 8)
/*
 * If COOP_TASKRUN is set, get notified if task work is available for
 * running and a kernel transition would be needed to run it. This sets
 * IORING_SQ_TASKRUN in the sq ring flags. Not valid with COOP_TASKRUN.
 */
#define IORING_SETUP_TASKRUN_FLAG	(1U << 9)
#define IORING_SETUP_SQE128		(1U << 10) /* SQEs are 128 byte */
#define IORING_SETUP_CQE32		(1U << 11) /* CQEs are 32 byte */
/*
 * Only one task is allowed to submit requests
 */
#define IORING_SETUP_SINGLE_ISSUER	(1U << 12)

/*
 * Defer running task work to get events.
 * Rather than running bits of task work whenever the task transitions
 * try to do it just before it is needed.
 */
#define IORING_SETUP_DEFER_TASKRUN	(1U << 13)

/*
 * Application provides the memory for the rings
 */
#define IORING_SETUP_NO_MMAP		(1U << 14)

/*
 * Register the ring fd in itself for use with
 * IORING_REGISTER_USE_REGISTERED_RING; return a registered fd index rather
 * than an fd.
 */
#define IORING_SETUP_REGISTERED_FD_ONLY	(1U << 15)

/*
 * Removes indirection through the SQ index array.
 */
#define IORING_SETUP_NO_SQARRAY		(1U << 16)

/* Use hybrid poll in iopoll process */
#define IORING_SETUP_HYBRID_IOPOLL	(1U << 17)

enum io_uring_op {
	IORING_OP_NOP,
	IORING_OP_READV,
	IORING_OP_WRITEV,
	IORING_OP_FSYNC,
	IORING_OP_READ_FIXED,
	IORING_OP_WRITE_FIXED,
	IORING_OP_POLL_ADD,
	IORING_OP_POLL_REMOVE,
	IORING_OP_SYNC_FILE_RANGE,
	IORING_OP_SENDMSG,
	IORING_OP_RECVMSG,
	IORING_OP_TIMEOUT,
	IORING_OP_TIMEOUT_REMOVE,
	IORING_OP_ACCEPT,
	IORING_OP_ASYNC_CANCEL,
	IORING_OP_LINK_TIMEOUT,
	IORING_OP_CONNECT,
	IORING_OP_FALLOCATE,
	IORING_OP_OPENAT,
	IORING_OP_CLOSE,
	IORING_OP_FILES_UPDATE,
	IORING_OP_STATX,
	IORING_OP_READ,
	IORING_OP_WRITE,
	IORING_OP_FADVISE,
	IORING_OP_MADVISE,
	IORING_OP_SEND,
	IORING_OP_RECV,
	IORING_OP_OPENAT2,
	IORING_OP_EPOLL_CTL,
	IORING_OP_SPLICE,
	IORING_OP_PROVIDE_BUFFERS,
	IORING_OP_REMOVE_BUFFERS,
	IORING_OP_TEE,
	IORING_OP_SHUTDOWN,
	IORING_OP_RENAMEAT,
	IORING_OP_UNLINKAT,
	IORING_OP_MKDIRAT,
	IORING_OP_SYMLINKAT,
	IORING_OP_LINKAT,
	IORING_OP_MSG_RING,
	IORING_OP_FSETXATTR,
	IORING_OP_SETXATTR,
	IORING_OP_FGETXATTR,
	IORING_OP_GETXATTR,
	IORING_OP_SOCKET,
	IORING_OP_URING_CMD,
	IORING_OP_SEND_ZC,
	IORING_OP_SENDMSG_ZC,
	IORING_OP_READ_MULTISHOT,
	IORING_OP_WAITID,
	IORING_OP_FUTEX_WAIT,
	IORING_OP_FUTEX_WAKE,
	IORING_OP_FUTEX_WAITV,
	IORING_OP_FIXED_FD_INSTALL,
	IORING_OP_FTRUNCATE,
	IORING_OP_BIND,
	IORING_OP_LISTEN,

	/* this goes last, obviously */
	IORING_OP_LAST,
};

/*
 * sqe->uring_cmd_flags		top 8bits aren't available for userspace
 * IORING_URING_CMD_FIXED	use registered buffer; pass this flag
 *				along with setting sqe->buf_index.
 */
#define IORING_URING_CMD_FIXED	(1U << 0)
#define IORING_URING_CMD_MASK	IORING_URING_CMD_FIXED


/*
 * sqe->fsync_flags
 */
#define IORING_FSYNC_DATASYNC	(1U << 0)

/*
 * sqe->timeout_flags
 */
#define IORING_TIMEOUT_ABS		(1U << 0)
#define IORING_TIMEOUT_UPDATE		(1U << 1)
#define IORING_TIMEOUT_BOOTTIME		(1U << 2)
#define IORING_TIMEOUT_REALTIME		(1U << 3)
#define IORING_LINK_TIMEOUT_UPDATE	(1U << 4)
#define IORING_TIMEOUT_ETIME_SUCCESS	(1U << 5)
#define IORING_TIMEOUT_MULTISHOT	(1U << 6)
#define IORING_TIMEOUT_CLOCK_MASK	(IORING_TIMEOUT_BOOTTIME | IORING_TIMEOUT_REALTIME)
#define IORING_TIMEOUT_UPDATE_MASK	(IORING_TIMEOUT_UPDATE | IORING_LINK_TIMEOUT_UPDATE)
/*
 * sqe->splice_flags
 * extends splice(2) flags
 */
#define SPLICE_F_FD_IN_FIXED	(1U << 31) /* the last bit of __u32 */

/*
 * POLL_ADD flags. Note that since sqe->poll_events is the flag space, the
 * command flags for POLL_ADD are stored in sqe->len.
 *
 * IORING_POLL_ADD_MULTI	Multishot poll. Sets IORING_CQE_F_MORE if
 *				the poll handler will continue to report
 *				CQEs on behalf of the same SQE.
 *
 * IORING_POLL_UPDATE		Update existing poll request, matching
 *				sqe->addr as the old user_data field.
 *
 * IORING_POLL_LEVEL		Level triggered poll.
 */
#define IORING_POLL_ADD_MULTI	(1U << 0)
#define IORING_POLL_UPDATE_EVENTS	(1U << 1)
#define IORING_POLL_UPDATE_USER_DATA	(1U << 2)
#define IORING_POLL_ADD_LEVEL		(1U << 3)

/*
 * ASYNC_CANCEL flags.
 *
 * IORING_ASYNC_CANCEL_ALL	Cancel all requests that match the given key
 * IORING_ASYNC_CANCEL_FD	Key off 'fd' for cancelation rather than the
 *				request 'user_data'
 * IORING_ASYNC_CANCEL_ANY	Match any request
 * IORING_ASYNC_CANCEL_FD_FIXED	'fd' passed in is a fixed descriptor
 * IORING_ASYNC_CANCEL_USERDATA	Match on user_data, default for no other key
 * IORING_ASYNC_CANCEL_OP	Match request based on opcode
 */
#define IORING_ASYNC_CANCEL_ALL	(1U << 0)
#define IORING_ASYNC_CANCEL_FD	(1U << 1)
#define IORING_ASYNC_CANCEL_ANY	(1U << 2)
#define IORING_ASYNC_CANCEL_FD_FIXED	(1U << 3)
#define IORING_ASYNC_CANCEL_USERDATA	(1U << 4)
#define IORING_ASYNC_CANCEL_OP	(1U << 5)

/*
 * send/sendmsg and recv/recvmsg flags (sqe->ioprio)
 *
 * IORING_RECVSEND_POLL_FIRST	If set, instead of first attempting to send
 *				or receive and arm poll if that yields an
 *				-EAGAIN result, arm poll upfront and skip
 *				the initial transfer attempt.
 *
 * IORING_RECV_MULTISHOT	Multishot recv. Sets IORING_CQE_F_MORE if
 *				the handler will continue to report
 *				CQEs on behalf of the same SQE.
 *
 * IORING_RECVSEND_FIXED_BUF	Use registered buffers, the index is stored in
 *				the buf_index field.
 *
 * IORING_SEND_ZC_REPORT_USAGE
 *				If set, SEND[MSG]_ZC should report
 *				the zerocopy usage in cqe.res
 *				for the IORING_CQE_F_NOTIF cqe.
 *				0 is reported if zerocopy was actually possible.
 *				IORING_NOTIF_USAGE_ZC_COPIED if data was copied
 *				(at least partially).
 *
 * IORING_RECVSEND_BUNDLE	Used with IOSQE_BUFFER_SELECT. If set, send or
 *				recv will grab as many buffers from the buffer
 *				group ID given and send them all. The completion
 *				result 	will be the number of buffers send, with
 *				the starting buffer ID in cqe->flags as per
 *				usual for provided buffer usage. The buffers
 *				will be	contiguous from the starting buffer ID.
 */
#define IORING_RECVSEND_POLL_FIRST	(1U << 0)
#define IORING_RECV_MULTISHOT		(1U << 1)
#define IORING_RECVSEND_FIXED_BUF	(1U << 2)
#define IORING_SEND_ZC_REPORT_USAGE	(1U << 3)
#define IORING_RECVSEND_BUNDLE		(1U << 4)

/*
 * cqe.res for IORING_CQE_F_NOTIF if
 * IORING_SEND_ZC_REPORT_USAGE was requested
 *
 * It should be treated as a flag, all other
 * bits of cqe.res should be treated as reserved!
 */
#define IORING_NOTIF_USAGE_ZC_COPIED    (1U << 31)

/*
 * accept flags stored in sqe->ioprio
 */
#define IORING_ACCEPT_MULTISHOT	(1U << 0)
#define IORING_ACCEPT_DONTWAIT	(1U << 1)
#define IORING_ACCEPT_POLL_FIRST	(1U << 2)

/*
 * IORING_OP_MSG_RING command types, stored in sqe->addr
 */
enum io_uring_msg_ring_flags {
	IORING_MSG_DATA,	/* pass sqe->len as 'res' and off as user_data */
	IORING_MSG_SEND_FD,	/* send a registered fd to another ring */
};

/*
 * IORING_OP_MSG_RING flags (sqe->msg_ring_flags)
 *
 * IORING_MSG_RING_CQE_SKIP	Don't post a CQE to the target ring. Not
 *				applicable for IORING_MSG_DATA, obviously.
 */
#define IORING_MSG_RING_CQE_SKIP	(1U << 0)
/* Pass through the flags from sqe->file_index to cqe->flags */
#define IORING_MSG_RING_FLAGS_PASS	(1U << 1)

/*
 * IORING_OP_FIXED_FD_INSTALL flags (sqe->install_fd_flags)
 *
 * IORING_FIXED_FD_NO_CLOEXEC	Don't mark the fd as O_CLOEXEC
 */
#define IORING_FIXED_FD_NO_CLOEXEC	(1U << 0)

/*
 * IORING_OP_NOP flags (sqe->nop_flags)
 *
 * IORING_NOP_INJECT_RESULT	Inject result from sqe->result
 */
#define IORING_NOP_INJECT_RESULT	(1U << 0)
#define IORING_NOP_FILE			(1U << 1)
#define IORING_NOP_FIXED_FILE		(1U << 2)
#define IORING_NOP_FIXED_BUFFER		(1U << 3)

/*
 * IO completion data structure (Completion Queue Entry)
 */
struct io_uring_cqe {
	__u64	user_data;	/* sqe->user_data value passed back */
	__s32	res;		/* result code for this event */
	__u32	flags;

	/*
	 * If the ring is initialized with IORING_SETUP_CQE32, then this field
	 * contains 16-bytes of padding, doubling the size of the CQE.
	 */
	__u64 big_cqe[];
};

/*
 * cqe->flags
 *
 * IORING_CQE_F_BUFFER	If set, the upper 16 bits are the buffer ID
 * IORING_CQE_F_MORE	If set, parent SQE will generate more CQE entries
 * IORING_CQE_F_SOCK_NONEMPTY	If set, more data to read after socket recv
 * IORING_CQE_F_NOTIF	Set for notification CQEs. Can be used to distinct
 * 			them from sends.
 * IORING_CQE_F_BUF_MORE If set, the buffer ID set in the completion will get
 *			more completions. In other words, the buffer is being
 *			partially consumed, and will be used by the kernel for
 *			more completions. This is only set for buffers used via
 *			the incremental buffer consumption, as provided by
 *			a ring buffer setup with IOU_PBUF_RING_INC. For any
 *			other provided buffer type, all completions with a
 *			buffer passed back is automatically returned to the
 *			application.
 */
#define IORING_CQE_F_BUFFER		(1U << 0)
#define IORING_CQE_F_MORE		(1U << 1)
#define IORING_CQE_F_SOCK_NONEMPTY	(1U << 2)
#define IORING_CQE_F_NOTIF		(1U << 3)
#define IORING_CQE_F_BUF_MORE		(1U << 4)

#define IORING_CQE_BUFFER_SHIFT		16

/*
 * Magic offsets for the application to mmap the data it needs
 */
#define IORING_OFF_SQ_RING		0ULL
#define IORING_OFF_CQ_RING		0x8000000ULL
#define IORING_OFF_SQES			0x10000000ULL
#define IORING_OFF_PBUF_RING		0x80000000ULL
#define IORING_OFF_PBUF_SHIFT		16
#define IORING_OFF_MMAP_MASK		0xf8000000ULL

/*
 * Filled with the offset for mmap(2)
 */
struct io_sqring_offsets {
	__u32 head;
	__u32 tail;
	__u32 ring_mask;
	__u32 ring_entries;
	__u32 flags;
	__u32 dropped;
	__u32 array;
	__u32 resv1;
	__u64 user_addr;
};

/*
 * sq_ring->flags
 */
#define IORING_SQ_NEED_WAKEUP	(1U << 0) /* needs io_uring_enter wakeup */
#define IORING_SQ_CQ_OVERFLOW	(1U << 1) /* CQ ring is overflown */
#define IORING_SQ_TASKRUN	(1U << 2) /* task should enter the kernel */

struct io_cqring_offsets {
	__u32 head;
	__u32 tail;
	__u32 ring_mask;
	__u32 ring_entries;
	__u32 overflow;
	__u32 cqes;
	__u32 flags;
	__u32 resv1;
	__u64 user_addr;
};

/*
 * cq_ring->flags
 */

/* disable eventfd notifications */
#define IORING_CQ_EVENTFD_DISABLED	(1U << 0)

/*
 * io_uring_enter(2) flags
 */
#define IORING_ENTER_GETEVENTS		(1U << 0)
#define IORING_ENTER_SQ_WAKEUP		(1U << 1)
#define IORING_ENTER_SQ_WAIT		(1U << 2)
#define IORING_ENTER_EXT_ARG		(1U << 3)
#define IORING_ENTER_REGISTERED_RING	(1U << 4)
#define IORING_ENTER_ABS_TIMER		(1U << 5)
#define IORING_ENTER_EXT_ARG_REG	(1U << 6)

/*
 * Passed in for io_uring_setup(2). Copied back with updated info on success
 */
struct io_uring_params {
	__u32 sq_entries;
	__u32 cq_entries;
	__u32 flags;
	__u32 sq_thread_cpu;
	__u32 sq_thread_idle;
	__u32 features;
	__u32 wq_fd;
	__u32 resv[3];
	struct io_sqring_offsets sq_off;
	struct io_cqring_offsets cq_off;
};

/*
 * io_uring_params->features flags
 */
#define IORING_FEAT_SINGLE_MMAP		(1U << 0)
#define IORING_FEAT_NODROP		(1U << 1)
#define IORING_FEAT_SUBMIT_STABLE	(1U << 2)
#define IORING_FEAT_RW_CUR_POS		(1U << 3)
#define IORING_FEAT_CUR_PERSONALITY	(1U << 4)
#define IORING_FEAT_FAST_POLL		(1U << 5)
#define IORING_FEAT_POLL_32BITS 	(1U << 6)
#define IORING_FEAT_SQPOLL_NONFIXED	(1U << 7)
#define IORING_FEAT_EXT_ARG		(1U << 8)
#define IORING_FEAT_NATIVE_WORKERS	(1U << 9)
#define IORING_FEAT_RSRC_TAGS		(1U << 10)
#define IORING_FEAT_CQE_SKIP		(1U << 11)
#define IORING_FEAT_LINKED_FILE		(1U << 12)
#define IORING_FEAT_REG_REG_RING	(1U << 13)
#define IORING_FEAT_RECVSEND_BUNDLE	(1U << 14)
#define IORING_FEAT_MIN_TIMEOUT		(1U << 15)
#define IORING_FEAT_RW_ATTR		(1U << 16)

/*
 * io_uring_register(2) opcodes and arguments
 */
enum io_uring_register_op {
	IORING_REGISTER_BUFFERS			= 0,
	IORING_UNREGISTER_BUFFERS		= 1,
	IORING_REGISTER_FILES			= 2,
	IORING_UNREGISTER_FILES			= 3,
	IORING_REGISTER_EVENTFD			= 4,
	IORING_UNREGISTER_EVENTFD		= 5,
	IORING_REGISTER_FILES_UPDATE		= 6,
	IORING_REGISTER_EVENTFD_ASYNC		= 7,
	IORING_REGISTER_PROBE			= 8,
	IORING_REGISTER_PERSONALITY		= 9,
	IORING_UNREGISTER_PERSONALITY		= 10,
	IORING_REGISTER_RESTRICTIONS		= 11,
	IORING_REGISTER_ENABLE_RINGS		= 12,

	/* extended with tagging */
	IORING_REGISTER_FILES2			= 13,
	IORING_REGISTER_FILES_UPDATE2		= 14,
	IORING_REGISTER_BUFFERS2		= 15,
	IORING_REGISTER_BUFFERS_UPDATE		= 16,

	/* set/clear io-wq thread affinities */
	IORING_REGISTER_IOWQ_AFF		= 17,
	IORING_UNREGISTER_IOWQ_AFF		= 18,

	/* set/get max number of io-wq workers */
	IORING_REGISTER_IOWQ_MAX_WORKERS	= 19,

	/* register/unregister io_uring fd with the ring */
	IORING_REGISTER_RING_FDS		= 20,
	IORING_UNREGISTER_RING_FDS		= 21,

	/* register ring based provide buffer group */
	IORING_REGISTER_PBUF_RING		= 22,
	IORING_UNREGISTER_PBUF_RING		= 23,

	/* sync cancelation API */
	IORING_REGISTER_SYNC_CANCEL		= 24,

	/* register a range of fixed file slots for automatic slot allocation */
	IORING_REGISTER_FILE_ALLOC_RANGE	= 25,

	/* return status information for a buffer group */
	IORING_REGISTER_PBUF_STATUS		= 26,

	/* set/clear busy poll settings */
	IORING_REGISTER_NAPI			= 27,
	IORING_UNREGISTER_NAPI			= 28,

	IORING_REGISTER_CLOCK			= 29,

	/* clone registered buffers from source ring to current ring */
	IORING_REGISTER_CLONE_BUFFERS		= 30,

	/* send MSG_RING without having a ring */
	IORING_REGISTER_SEND_MSG_RING		= 31,

	/* 32 reserved for zc rx */

	/* resize CQ ring */
	IORING_REGISTER_RESIZE_RINGS		= 33,

	IORING_REGISTER_MEM_REGION		= 34,

	/* this goes last */
	IORING_REGISTER_LAST,

	/* flag added to the opcode to use a registered ring fd */
	IORING_REGISTER_USE_REGISTERED_RING	= 1U << 31
};

/* io-wq worker categories */
enum io_wq_type {
	IO_WQ_BOUND,
	IO_WQ_UNBOUND,
};

/* deprecated, see struct io_uring_rsrc_update */
struct io_uring_files_update {
	__u32 offset;
	__u32 resv;
	__aligned_u64 /* __s32 * */ fds;
};

enum {
	/* initialise with user provided memory pointed by user_addr */
	IORING_MEM_REGION_TYPE_USER		= 1,
};

struct io_uring_region_desc {
	__u64 user_addr;
	__u64 size;
	__u32 flags;
	__u32 id;
	__u64 mmap_offset;
	__u64 __resv[4];
};

enum {
	/* expose the region as registered wait arguments */
	IORING_MEM_REGION_REG_WAIT_ARG		= 1,
};

struct io_uring_mem_region_reg {
	__u64 region_uptr; /* struct io_uring_region_desc * */
	__u64 flags;
	__u64 __resv[2];
};

/*
 * Register a fully sparse file space, rather than pass in an array of all
 * -1 file descriptors.
 */
#define IORING_RSRC_REGISTER_SPARSE	(1U << 0)

struct io_uring_rsrc_register {
	__u32 nr;
	__u32 flags;
	__u64 resv2;
	__aligned_u64 data;
	__aligned_u64 tags;
};

struct io_uring_rsrc_update {
	__u32 offset;
	__u32 resv;
	__aligned_u64 data;
};

struct io_uring_rsrc_update2 {
	__u32 offset;
	__u32 resv;
	__aligned_u64 data;
	__aligned_u64 tags;
	__u32 nr;
	__u32 resv2;
};

/* Skip updating fd indexes set to this value in the fd table */
#define IORING_REGISTER_FILES_SKIP	(-2)

#define IO_URING_OP_SUPPORTED	(1U << 0)

struct io_uring_probe_op {
	__u8 op;
	__u8 resv;
	__u16 flags;	/* IO_URING_OP_* flags */
	__u32 resv2;
};

struct io_uring_probe {
	__u8 last_op;	/* last opcode supported */
	__u8 ops_len;	/* length of ops[] array below */
	__u16 resv;
	__u32 resv2[3];
	struct io_uring_probe_op ops[];
};

struct io_uring_restriction {
	__u16 opcode;
	union {
		__u8 register_op; /* IORING_RESTRICTION_REGISTER_OP */
		__u8 sqe_op;      /* IORING_RESTRICTION_SQE_OP */
		__u8 sqe_flags;   /* IORING_RESTRICTION_SQE_FLAGS_* */
	};
	__u8 resv;
	__u32 resv2[3];
};

struct io_uring_clock_register {
	__u32	clockid;
	__u32	__resv[3];
};

enum {
	IORING_REGISTER_SRC_REGISTERED	= (1U << 0),
	IORING_REGISTER_DST_REPLACE	= (1U << 1),
};

struct io_uring_clone_buffers {
	__u32	src_fd;
	__u32	flags;
	__u32	src_off;
	__u32	dst_off;
	__u32	nr;
	__u32	pad[3];
};

struct io_uring_buf {
	__u64	addr;
	__u32	len;
	__u16	bid;
	__u16	resv;
};

struct io_uring_buf_ring {
	union {
		/*
		 * To avoid spilling into more pages than we need to, the
		 * ring tail is overlaid with the io_uring_buf->resv field.
		 */
		struct {
			__u64	resv1;
			__u32	resv2;
			__u16	resv3;
			__u16	tail;
		};
		__DECLARE_FLEX_ARRAY(struct io_uring_buf, bufs);
	};
};

/*
 * Flags for IORING_REGISTER_PBUF_RING.
 *
 * IOU_PBUF_RING_MMAP:	If set, kernel will allocate the memory for the ring.
 *			The application must not set a ring_addr in struct
 *			io_uring_buf_reg, instead it must subsequently call
 *			mmap(2) with the offset set as:
 *			IORING_OFF_PBUF_RING | (bgid << IORING_OFF_PBUF_SHIFT)
 *			to get a virtual mapping for the ring.
 * IOU_PBUF_RING_INC:	If set, buffers consumed from this buffer ring can be
 *			consumed incrementally. Normally one (or more) buffers
 *			are fully consumed. With incremental consumptions, it's
 *			feasible to register big ranges of buffers, and each
 *			use of it will consume only as much as it needs. This
 *			requires that both the kernel and application keep
 *			track of where the current read/recv index is at.
 */
enum io_uring_register_pbuf_ring_flags {
	IOU_PBUF_RING_MMAP	= 1,
	IOU_PBUF_RING_INC	= 2,
};

/* argument for IORING_(UN)REGISTER_PBUF_RING */
struct io_uring_buf_reg {
	__u64	ring_addr;
	__u32	ring_entries;
	__u16	bgid;
	__u16	flags;
	__u64	resv[3];
};

/* argument for IORING_REGISTER_PBUF_STATUS */
struct io_uring_buf_status {
	__u32	buf_group;	/* input */
	__u32	head;		/* output */
	__u32	resv[8];
};

enum io_uring_napi_op {
	/* register/ungister backward compatible opcode */
	IO_URING_NAPI_REGISTER_OP = 0,

	/* opcodes to update napi_list when static tracking is used */
	IO_URING_NAPI_STATIC_ADD_ID = 1,
	IO_URING_NAPI_STATIC_DEL_ID = 2
};

enum io_uring_napi_tracking_strategy {
	/* value must be 0 for backward compatibility */
	IO_URING_NAPI_TRACKING_DYNAMIC = 0,
	IO_URING_NAPI_TRACKING_STATIC = 1,
	IO_URING_NAPI_TRACKING_INACTIVE = 255
};

/* argument for IORING_(UN)REGISTER_NAPI */
struct io_uring_napi {
	__u32	busy_poll_to;
	__u8	prefer_busy_poll;

	/* a io_uring_napi_op value */
	__u8	opcode;
	__u8	pad[2];

	/*
	 * for IO_URING_NAPI_REGISTER_OP, it is a
	 * io_uring_napi_tracking_strategy value.
	 *
	 * for IO_URING_NAPI_STATIC_ADD_ID/IO_URING_NAPI_STATIC_DEL_ID
	 * it is the napi id to add/del from napi_list.
	 */
	__u32	op_param;
	__u32	resv;
};

/*
 * io_uring_restriction->opcode values
 */
enum io_uring_register_restriction_op {
	/* Allow an io_uring_register(2) opcode */
	IORING_RESTRICTION_REGISTER_OP		= 0,

	/* Allow an sqe opcode */
	IORING_RESTRICTION_SQE_OP		= 1,

	/* Allow sqe flags */
	IORING_RESTRICTION_SQE_FLAGS_ALLOWED	= 2,

	/* Require sqe flags (these flags must be set on each submission) */
	IORING_RESTRICTION_SQE_FLAGS_REQUIRED	= 3,

	IORING_RESTRICTION_LAST
};

enum {
	IORING_REG_WAIT_TS		= (1U << 0),
};

/*
 * Argument for io_uring_enter(2) with
 * IORING_GETEVENTS | IORING_ENTER_EXT_ARG_REG set, where the actual argument
 * is an index into a previously registered fixed wait region described by
 * the below structure.
 */
struct io_uring_reg_wait {
	struct __kernel_timespec	ts;
	__u32				min_wait_usec;
	__u32				flags;
	__u64				sigmask;
	__u32				sigmask_sz;
	__u32				pad[3];
	__u64				pad2[2];
};

/*
 * Argument for io_uring_enter(2) with IORING_GETEVENTS | IORING_ENTER_EXT_ARG
 */
struct io_uring_getevents_arg {
	__u64	sigmask;
	__u32	sigmask_sz;
	__u32	min_wait_usec;
	__u64	ts;
};

/*
 * Argument for IORING_REGISTER_SYNC_CANCEL
 */
struct io_uring_sync_cancel_reg {
	__u64				addr;
	__s32				fd;
	__u32				flags;
	struct __kernel_timespec	timeout;
	__u8				opcode;
	__u8				pad[7];
	__u64				pad2[3];
};

/*
 * Argument for IORING_REGISTER_FILE_ALLOC_RANGE
 * The range is specified as [off, off + len)
 */
struct io_uring_file_index_range {
	__u32	off;
	__u32	len;
	__u64	resv;
};

struct io_uring_recvmsg_out {
	__u32 namelen;
	__u32 controllen;
	__u32 payloadlen;
	__u32 flags;
};

/*
 * Argument for IORING_OP_URING_CMD when file is a socket
 */
enum io_uring_socket_op {
	SOCKET_URING_OP_SIOCINQ		= 0,
	SOCKET_URING_OP_SIOCOUTQ,
	SOCKET_URING_OP_GETSOCKOPT,
	SOCKET_URING_OP_SETSOCKOPT,
};

#ifdef __cplusplus
}
#endif

#endif

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]

Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
12 Sep 2026 4.57 AM
root / root
0755
android
--
12 Sep 2026 4.57 AM
root / root
0755
byteorder
--
12 Sep 2026 4.57 AM
root / root
0755
caif
--
12 Sep 2026 4.57 AM
root / root
0755
can
--
12 Sep 2026 4.57 AM
root / root
0755
cifs
--
12 Sep 2026 4.57 AM
root / root
0755
dvb
--
12 Sep 2026 4.57 AM
root / root
0755
genwqe
--
12 Sep 2026 4.57 AM
root / root
0755
hdlc
--
12 Sep 2026 4.57 AM
root / root
0755
hsi
--
12 Sep 2026 4.57 AM
root / root
0755
iio
--
12 Sep 2026 4.57 AM
root / root
0755
isdn
--
12 Sep 2026 4.57 AM
root / root
0755
misc
--
12 Sep 2026 4.57 AM
root / root
0755
mmc
--
12 Sep 2026 4.57 AM
root / root
0755
netfilter
--
12 Sep 2026 4.57 AM
root / root
0755
netfilter_arp
--
12 Sep 2026 4.57 AM
root / root
0755
netfilter_bridge
--
12 Sep 2026 4.57 AM
root / root
0755
netfilter_ipv4
--
12 Sep 2026 4.57 AM
root / root
0755
netfilter_ipv6
--
12 Sep 2026 4.57 AM
root / root
0755
nfsd
--
12 Sep 2026 4.57 AM
root / root
0755
raid
--
12 Sep 2026 4.57 AM
root / root
0755
sched
--
12 Sep 2026 4.57 AM
root / root
0755
spi
--
12 Sep 2026 4.57 AM
root / root
0755
sunrpc
--
12 Sep 2026 4.57 AM
root / root
0755
surface_aggregator
--
12 Sep 2026 4.57 AM
root / root
0755
tc_act
--
12 Sep 2026 4.57 AM
root / root
0755
tc_ematch
--
12 Sep 2026 4.57 AM
root / root
0755
usb
--
12 Sep 2026 4.57 AM
root / root
0755
a.out.h
6.73 KB
11 Sep 2026 1.33 PM
root / root
0644
acct.h
3.821 KB
11 Sep 2026 1.33 PM
root / root
0644
acrn.h
16.295 KB
11 Sep 2026 1.33 PM
root / root
0644
adb.h
1.113 KB
11 Sep 2026 1.33 PM
root / root
0644
adfs_fs.h
0.97 KB
11 Sep 2026 1.33 PM
root / root
0644
affs_hardblocks.h
1.541 KB
11 Sep 2026 1.33 PM
root / root
0644
agpgart.h
3.848 KB
11 Sep 2026 1.33 PM
root / root
0644
aio_abi.h
3.318 KB
11 Sep 2026 1.33 PM
root / root
0644
am437x-vpfe.h
3.595 KB
11 Sep 2026 1.33 PM
root / root
0644
apm_bios.h
3.597 KB
11 Sep 2026 1.33 PM
root / root
0644
arcfb.h
0.208 KB
11 Sep 2026 1.33 PM
root / root
0644
arm_sdei.h
2.687 KB
11 Sep 2026 1.33 PM
root / root
0644
aspeed-lpc-ctrl.h
1.738 KB
11 Sep 2026 1.33 PM
root / root
0644
aspeed-p2a-ctrl.h
1.861 KB
11 Sep 2026 1.33 PM
root / root
0644
atalk.h
0.999 KB
11 Sep 2026 1.33 PM
root / root
0644
atm.h
7.703 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_eni.h
0.633 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_he.h
0.396 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_idt77105.h
0.933 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_nicstar.h
1.248 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_tcp.h
1.584 KB
11 Sep 2026 1.33 PM
root / root
0644
atm_zatm.h
1.504 KB
11 Sep 2026 1.33 PM
root / root
0644
atmapi.h
0.93 KB
11 Sep 2026 1.33 PM
root / root
0644
atmarp.h
1.266 KB
11 Sep 2026 1.33 PM
root / root
0644
atmbr2684.h
3.194 KB
11 Sep 2026 1.33 PM
root / root
0644
atmclip.h
0.563 KB
11 Sep 2026 1.33 PM
root / root
0644
atmdev.h
7.497 KB
11 Sep 2026 1.33 PM
root / root
0644
atmioc.h
1.608 KB
11 Sep 2026 1.33 PM
root / root
0644
atmlec.h
2.325 KB
11 Sep 2026 1.33 PM
root / root
0644
atmmpc.h
4.127 KB
11 Sep 2026 1.33 PM
root / root
0644
atmppp.h
0.624 KB
11 Sep 2026 1.33 PM
root / root
0644
atmsap.h
4.854 KB
11 Sep 2026 1.33 PM
root / root
0644
atmsvc.h
1.81 KB
11 Sep 2026 1.33 PM
root / root
0644
audit.h
21.064 KB
11 Sep 2026 1.33 PM
root / root
0644
auto_dev-ioctl.h
4.869 KB
11 Sep 2026 1.33 PM
root / root
0644
auto_fs.h
6.277 KB
11 Sep 2026 1.33 PM
root / root
0644
auto_fs4.h
0.44 KB
11 Sep 2026 1.33 PM
root / root
0644
auxvec.h
1.56 KB
11 Sep 2026 1.33 PM
root / root
0644
ax25.h
2.758 KB
11 Sep 2026 1.33 PM
root / root
0644
batadv_packet.h
19.868 KB
11 Sep 2026 1.33 PM
root / root
0644
batman_adv.h
16.491 KB
11 Sep 2026 1.33 PM
root / root
0644
baycom.h
0.862 KB
11 Sep 2026 1.33 PM
root / root
0644
bcm933xx_hcs.h
0.409 KB
11 Sep 2026 1.33 PM
root / root
0644
bfs_fs.h
1.86 KB
11 Sep 2026 1.33 PM
root / root
0644
binfmts.h
0.758 KB
11 Sep 2026 1.33 PM
root / root
0644
bits.h
0.437 KB
11 Sep 2026 1.33 PM
root / root
0644
blkdev.h
0.351 KB
11 Sep 2026 1.33 PM
root / root
0644
blkpg.h
0.883 KB
11 Sep 2026 1.33 PM
root / root
0644
blktrace_api.h
4.591 KB
11 Sep 2026 1.33 PM
root / root
0644
blkzoned.h
6.341 KB
11 Sep 2026 1.33 PM
root / root
0644
bpf.h
272.142 KB
11 Sep 2026 1.33 PM
root / root
0644
bpf_common.h
1.335 KB
11 Sep 2026 1.33 PM
root / root
0644
bpf_perf_event.h
0.517 KB
11 Sep 2026 1.33 PM
root / root
0644
bpfilter.h
0.454 KB
11 Sep 2026 1.33 PM
root / root
0644
bpqether.h
0.958 KB
11 Sep 2026 1.33 PM
root / root
0644
bsg.h
2.436 KB
11 Sep 2026 1.33 PM
root / root
0644
bt-bmc.h
0.559 KB
11 Sep 2026 1.33 PM
root / root
0644
btf.h
5.46 KB
11 Sep 2026 1.33 PM
root / root
0644
btrfs.h
29.854 KB
11 Sep 2026 1.33 PM
root / root
0644
btrfs_tree.h
25.224 KB
11 Sep 2026 1.33 PM
root / root
0644
cachefiles.h
1.611 KB
11 Sep 2026 1.33 PM
root / root
0644
can.h
11.227 KB
11 Sep 2026 1.33 PM
root / root
0644
capability.h
13.175 KB
11 Sep 2026 1.33 PM
root / root
0644
capi.h
3.051 KB
11 Sep 2026 1.33 PM
root / root
0644
cciss_defs.h
3.204 KB
11 Sep 2026 1.33 PM
root / root
0644
cciss_ioctl.h
2.696 KB
11 Sep 2026 1.33 PM
root / root
0644
ccs.h
0.749 KB
11 Sep 2026 1.33 PM
root / root
0644
cdrom.h
28.868 KB
11 Sep 2026 1.33 PM
root / root
0644
cec-funcs.h
53.144 KB
11 Sep 2026 1.33 PM
root / root
0644
cec.h
40.466 KB
11 Sep 2026 1.33 PM
root / root
0644
cfm_bridge.h
1.422 KB
11 Sep 2026 1.33 PM
root / root
0644
cgroupstats.h
2.167 KB
11 Sep 2026 1.33 PM
root / root
0644
chio.h
5.158 KB
11 Sep 2026 1.33 PM
root / root
0644
close_range.h
0.368 KB
11 Sep 2026 1.33 PM
root / root
0644
cm4000_cs.h
1.764 KB
11 Sep 2026 1.33 PM
root / root
0644
cn_proc.h
4.052 KB
11 Sep 2026 1.33 PM
root / root
0644
coda.h
17.789 KB
11 Sep 2026 1.33 PM
root / root
0644
coff.h
12.255 KB
11 Sep 2026 1.33 PM
root / root
0644
connector.h
2.2 KB
11 Sep 2026 1.33 PM
root / root
0644
const.h
0.964 KB
11 Sep 2026 1.33 PM
root / root
0644
coresight-stm.h
0.729 KB
11 Sep 2026 1.33 PM
root / root
0644
cramfs_fs.h
3.472 KB
11 Sep 2026 1.33 PM
root / root
0644
cryptouser.h
5.196 KB
11 Sep 2026 1.33 PM
root / root
0644
cuda.h
0.884 KB
11 Sep 2026 1.33 PM
root / root
0644
cxl_mem.h
7.729 KB
11 Sep 2026 1.33 PM
root / root
0644
cycx_cfm.h
2.92 KB
11 Sep 2026 1.33 PM
root / root
0644
dcbnl.h
24.699 KB
11 Sep 2026 1.33 PM
root / root
0644
dccp.h
6.285 KB
11 Sep 2026 1.33 PM
root / root
0644
devlink.h
23.265 KB
11 Sep 2026 1.33 PM
root / root
0644
dlm.h
2.493 KB
11 Sep 2026 1.33 PM
root / root
0644
dlm_device.h
2.483 KB
11 Sep 2026 1.33 PM
root / root
0644
dlm_netlink.h
1.132 KB
11 Sep 2026 1.33 PM
root / root
0644
dlm_plock.h
0.873 KB
11 Sep 2026 1.33 PM
root / root
0644
dlmconstants.h
4.961 KB
11 Sep 2026 1.33 PM
root / root
0644
dm-ioctl.h
11.478 KB
11 Sep 2026 1.33 PM
root / root
0644
dm-log-userspace.h
14.835 KB
11 Sep 2026 1.33 PM
root / root
0644
dma-buf.h
5.124 KB
11 Sep 2026 1.33 PM
root / root
0644
dma-heap.h
1.361 KB
11 Sep 2026 1.33 PM
root / root
0644
dn.h
4.533 KB
11 Sep 2026 1.33 PM
root / root
0644
dns_resolver.h
3.856 KB
11 Sep 2026 1.33 PM
root / root
0644
dpll.h
9.442 KB
11 Sep 2026 1.33 PM
root / root
0644
dqblk_xfs.h
9.168 KB
11 Sep 2026 1.33 PM
root / root
0644
edd.h
5.473 KB
11 Sep 2026 1.33 PM
root / root
0644
efs_fs_sb.h
2.175 KB
11 Sep 2026 1.33 PM
root / root
0644
elf-em.h
2.565 KB
11 Sep 2026 1.33 PM
root / root
0644
elf-fdpic.h
1.098 KB
11 Sep 2026 1.33 PM
root / root
0644
elf.h
14.969 KB
11 Sep 2026 1.33 PM
root / root
0644
errno.h
0.022 KB
11 Sep 2026 1.33 PM
root / root
0644
errqueue.h
1.937 KB
11 Sep 2026 1.33 PM
root / root
0644
erspan.h
1.034 KB
11 Sep 2026 1.33 PM
root / root
0644
ethtool.h
101.652 KB
11 Sep 2026 1.33 PM
root / root
0644
ethtool_netlink.h
6.166 KB
11 Sep 2026 1.33 PM
root / root
0644
ethtool_netlink_generated.h
19.166 KB
11 Sep 2026 1.33 PM
root / root
0644
eventfd.h
0.258 KB
11 Sep 2026 1.33 PM
root / root
0644
eventpoll.h
2.845 KB
11 Sep 2026 1.33 PM
root / root
0644
f2fs.h
3.224 KB
11 Sep 2026 1.33 PM
root / root
0644
fadvise.h
0.822 KB
11 Sep 2026 1.33 PM
root / root
0644
falloc.h
3.558 KB
11 Sep 2026 1.33 PM
root / root
0644
fanotify.h
7.701 KB
11 Sep 2026 1.33 PM
root / root
0644
fb.h
16.091 KB
11 Sep 2026 1.33 PM
root / root
0644
fcntl.h
4.218 KB
11 Sep 2026 1.33 PM
root / root
0644
fd.h
11.833 KB
11 Sep 2026 1.33 PM
root / root
0644
fdreg.h
5.238 KB
11 Sep 2026 1.33 PM
root / root
0644
fib_rules.h
1.988 KB
11 Sep 2026 1.33 PM
root / root
0644
fiemap.h
2.71 KB
11 Sep 2026 1.33 PM
root / root
0644
filter.h
2.164 KB
11 Sep 2026 1.33 PM
root / root
0644
firewire-cdev.h
43.203 KB
11 Sep 2026 1.33 PM
root / root
0644
firewire-constants.h
3.155 KB
11 Sep 2026 1.33 PM
root / root
0644
fou.h
0.8 KB
11 Sep 2026 1.33 PM
root / root
0644
fpga-dfl.h
8.523 KB
11 Sep 2026 1.33 PM
root / root
0644
fs.h
13.229 KB
11 Sep 2026 1.33 PM
root / root
0644
fscrypt.h
6.411 KB
11 Sep 2026 1.33 PM
root / root
0644
fsi.h
2.202 KB
11 Sep 2026 1.33 PM
root / root
0644
fsl_hypervisor.h
7.13 KB
11 Sep 2026 1.33 PM
root / root
0644
fsl_mc.h
0.717 KB
11 Sep 2026 1.33 PM
root / root
0644
fsmap.h
4.29 KB
11 Sep 2026 1.33 PM
root / root
0644
fsverity.h
3.11 KB
11 Sep 2026 1.33 PM
root / root
0644
fuse.h
25.359 KB
11 Sep 2026 1.33 PM
root / root
0644
futex.h
6.228 KB
11 Sep 2026 1.33 PM
root / root
0644
gameport.h
0.876 KB
11 Sep 2026 1.33 PM
root / root
0644
gen_stats.h
1.49 KB
11 Sep 2026 1.33 PM
root / root
0644
genetlink.h
2.186 KB
11 Sep 2026 1.33 PM
root / root
0644
gfs2_ondisk.h
14.427 KB
11 Sep 2026 1.33 PM
root / root
0644
gpio.h
19.455 KB
11 Sep 2026 1.33 PM
root / root
0644
gsmmux.h
4.403 KB
11 Sep 2026 1.33 PM
root / root
0644
gtp.h
0.717 KB
11 Sep 2026 1.33 PM
root / root
0644
handshake.h
1.607 KB
11 Sep 2026 1.33 PM
root / root
0644
hash_info.h
0.948 KB
11 Sep 2026 1.33 PM
root / root
0644
hdlc.h
0.622 KB
11 Sep 2026 1.33 PM
root / root
0644
hdlcdrv.h
2.84 KB
11 Sep 2026 1.33 PM
root / root
0644
hdreg.h
22.171 KB
11 Sep 2026 1.33 PM
root / root
0644
hid.h
2.037 KB
11 Sep 2026 1.33 PM
root / root
0644
hiddev.h
6.196 KB
11 Sep 2026 1.33 PM
root / root
0644
hidraw.h
1.946 KB
11 Sep 2026 1.33 PM
root / root
0644
hpet.h
0.726 KB
11 Sep 2026 1.33 PM
root / root
0644
hsr_netlink.h
1.075 KB
11 Sep 2026 1.33 PM
root / root
0644
hw_breakpoint.h
0.725 KB
11 Sep 2026 1.33 PM
root / root
0644
hyperv.h
10.891 KB
11 Sep 2026 1.33 PM
root / root
0644
i2c-dev.h
1.831 KB
11 Sep 2026 1.33 PM
root / root
0644
i2c.h
6.729 KB
11 Sep 2026 1.33 PM
root / root
0644
i2o-dev.h
11.284 KB
11 Sep 2026 1.33 PM
root / root
0644
i8k.h
1.492 KB
11 Sep 2026 1.33 PM
root / root
0644
icmp.h
4.673 KB
11 Sep 2026 1.33 PM
root / root
0644
icmpv6.h
4.199 KB
11 Sep 2026 1.33 PM
root / root
0644
idxd.h
9.109 KB
11 Sep 2026 1.33 PM
root / root
0644
if.h
10.669 KB
11 Sep 2026 1.33 PM
root / root
0644
if_addr.h
1.842 KB
11 Sep 2026 1.33 PM
root / root
0644
if_addrlabel.h
0.704 KB
11 Sep 2026 1.33 PM
root / root
0644
if_alg.h
1.529 KB
11 Sep 2026 1.33 PM
root / root
0644
if_arcnet.h
3.63 KB
11 Sep 2026 1.33 PM
root / root
0644
if_arp.h
6.411 KB
11 Sep 2026 1.33 PM
root / root
0644
if_bonding.h
5.024 KB
11 Sep 2026 1.33 PM
root / root
0644
if_bridge.h
20.269 KB
11 Sep 2026 1.33 PM
root / root
0644
if_cablemodem.h
0.963 KB
11 Sep 2026 1.33 PM
root / root
0644
if_eql.h
1.317 KB
11 Sep 2026 1.33 PM
root / root
0644
if_ether.h
8.213 KB
11 Sep 2026 1.33 PM
root / root
0644
if_fc.h
1.697 KB
11 Sep 2026 1.33 PM
root / root
0644
if_fddi.h
4.267 KB
11 Sep 2026 1.33 PM
root / root
0644
if_hippi.h
4.136 KB
11 Sep 2026 1.33 PM
root / root
0644
if_infiniband.h
1.216 KB
11 Sep 2026 1.33 PM
root / root
0644
if_link.h
52.973 KB
11 Sep 2026 1.33 PM
root / root
0644
if_ltalk.h
0.205 KB
11 Sep 2026 1.33 PM
root / root
0644
if_macsec.h
6.351 KB
11 Sep 2026 1.33 PM
root / root
0644
if_packet.h
7.991 KB
11 Sep 2026 1.33 PM
root / root
0644
if_phonet.h
0.414 KB
11 Sep 2026 1.33 PM
root / root
0644
if_plip.h
0.645 KB
11 Sep 2026 1.33 PM
root / root
0644
if_ppp.h
0.028 KB
11 Sep 2026 1.33 PM
root / root
0644
if_pppol2tp.h
3.226 KB
11 Sep 2026 1.33 PM
root / root
0644
if_pppox.h
4.765 KB
11 Sep 2026 1.33 PM
root / root
0644
if_slip.h
0.852 KB
11 Sep 2026 1.33 PM
root / root
0644
if_team.h
2.539 KB
11 Sep 2026 1.33 PM
root / root
0644
if_tun.h
4.002 KB
11 Sep 2026 1.33 PM
root / root
0644
if_tunnel.h
5.359 KB
11 Sep 2026 1.33 PM
root / root
0644
if_vlan.h
1.788 KB
11 Sep 2026 1.33 PM
root / root
0644
if_x25.h
0.86 KB
11 Sep 2026 1.33 PM
root / root
0644
if_xdp.h
5.287 KB
11 Sep 2026 1.33 PM
root / root
0644
ife.h
0.343 KB
11 Sep 2026 1.33 PM
root / root
0644
igmp.h
2.992 KB
11 Sep 2026 1.33 PM
root / root
0644
ila.h
1.217 KB
11 Sep 2026 1.33 PM
root / root
0644
in.h
10.24 KB
11 Sep 2026 1.33 PM
root / root
0644
in6.h
7.36 KB
11 Sep 2026 1.33 PM
root / root
0644
in_route.h
0.914 KB
11 Sep 2026 1.33 PM
root / root
0644
inet_diag.h
4.899 KB
11 Sep 2026 1.33 PM
root / root
0644
inotify.h
3.215 KB
11 Sep 2026 1.33 PM
root / root
0644
input-event-codes.h
29.562 KB
11 Sep 2026 1.33 PM
root / root
0644
input.h
15.859 KB
11 Sep 2026 1.33 PM
root / root
0644
io_uring.h
24.476 KB
11 Sep 2026 1.33 PM
root / root
0644
ioctl.h
0.159 KB
11 Sep 2026 1.33 PM
root / root
0644
iommufd.h
47.775 KB
11 Sep 2026 1.33 PM
root / root
0644
ioprio.h
4.077 KB
11 Sep 2026 1.33 PM
root / root
0644
ip.h
4.7 KB
11 Sep 2026 1.33 PM
root / root
0644
ip6_tunnel.h
1.907 KB
11 Sep 2026 1.33 PM
root / root
0644
ip_vs.h
13.804 KB
11 Sep 2026 1.33 PM
root / root
0644
ipc.h
2.052 KB
11 Sep 2026 1.33 PM
root / root
0644
ipmi.h
15.08 KB
11 Sep 2026 1.33 PM
root / root
0644
ipmi_bmc.h
0.477 KB
11 Sep 2026 1.33 PM
root / root
0644
ipmi_msgdefs.h
3.35 KB
11 Sep 2026 1.33 PM
root / root
0644
ipmi_ssif_bmc.h
0.431 KB
11 Sep 2026 1.33 PM
root / root
0644
ipsec.h
0.925 KB
11 Sep 2026 1.33 PM
root / root
0644
ipv6.h
4.071 KB
11 Sep 2026 1.33 PM
root / root
0644
ipv6_route.h
1.863 KB
11 Sep 2026 1.33 PM
root / root
0644
ipx.h
2.292 KB
11 Sep 2026 1.33 PM
root / root
0644
irqnr.h
0.102 KB
11 Sep 2026 1.33 PM
root / root
0644
iso_fs.h
6.333 KB
11 Sep 2026 1.33 PM
root / root
0644
isst_if.h
15.8 KB
11 Sep 2026 1.33 PM
root / root
0644
ivtv.h
2.951 KB
11 Sep 2026 1.33 PM
root / root
0644
ivtvfb.h
1.179 KB
11 Sep 2026 1.33 PM
root / root
0644
jffs2.h
6.655 KB
11 Sep 2026 1.33 PM
root / root
0644
joystick.h
3.354 KB
11 Sep 2026 1.33 PM
root / root
0644
kcm.h
0.803 KB
11 Sep 2026 1.33 PM
root / root
0644
kcmp.h
0.51 KB
11 Sep 2026 1.33 PM
root / root
0644
kcov.h
1.917 KB
11 Sep 2026 1.33 PM
root / root
0644
kd.h
6.301 KB
11 Sep 2026 1.33 PM
root / root
0644
kdev_t.h
0.374 KB
11 Sep 2026 1.33 PM
root / root
0644
kernel-page-flags.h
0.879 KB
11 Sep 2026 1.33 PM
root / root
0644
kernel.h
0.189 KB
11 Sep 2026 1.33 PM
root / root
0644
kernelcapi.h
0.995 KB
11 Sep 2026 1.33 PM
root / root
0644
kexec.h
2.048 KB
11 Sep 2026 1.33 PM
root / root
0644
keyboard.h
13.144 KB
11 Sep 2026 1.33 PM
root / root
0644
keyctl.h
5.855 KB
11 Sep 2026 1.33 PM
root / root
0644
kfd_ioctl.h
57.199 KB
11 Sep 2026 1.33 PM
root / root
0644
kfd_sysfs.h
5.253 KB
11 Sep 2026 1.33 PM
root / root
0644
kvm.h
47.238 KB
11 Sep 2026 1.33 PM
root / root
0644
kvm_para.h
0.978 KB
11 Sep 2026 1.33 PM
root / root
0644
l2tp.h
5.611 KB
11 Sep 2026 1.33 PM
root / root
0644
landlock.h
11.551 KB
11 Sep 2026 1.33 PM
root / root
0644
libc-compat.h
8.095 KB
11 Sep 2026 1.33 PM
root / root
0644
limits.h
0.915 KB
11 Sep 2026 1.33 PM
root / root
0644
lirc.h
7.953 KB
11 Sep 2026 1.33 PM
root / root
0644
llc.h
3.09 KB
11 Sep 2026 1.33 PM
root / root
0644
loadpin.h
0.814 KB
11 Sep 2026 1.33 PM
root / root
0644
loop.h
3.316 KB
11 Sep 2026 1.33 PM
root / root
0644
lp.h
4.092 KB
11 Sep 2026 1.33 PM
root / root
0644
lsm.h
1.513 KB
11 Sep 2026 1.33 PM
root / root
0644
lwtunnel.h
2.312 KB
11 Sep 2026 1.33 PM
root / root
0644
magic.h
3.779 KB
11 Sep 2026 1.33 PM
root / root
0644
major.h
4.548 KB
11 Sep 2026 1.33 PM
root / root
0644
map_to_7segment.h
6.453 KB
11 Sep 2026 1.33 PM
root / root
0644
matroxfb.h
1.43 KB
11 Sep 2026 1.33 PM
root / root
0644
max2175.h
1.011 KB
11 Sep 2026 1.33 PM
root / root
0644
mdio.h
23.82 KB
11 Sep 2026 1.33 PM
root / root
0644
media-bus-format.h
6.747 KB
11 Sep 2026 1.33 PM
root / root
0644
media.h
12.455 KB
11 Sep 2026 1.33 PM
root / root
0644
mei.h
3.397 KB
11 Sep 2026 1.33 PM
root / root
0644
mei_uuid.h
0.721 KB
11 Sep 2026 1.33 PM
root / root
0644
membarrier.h
9.143 KB
11 Sep 2026 1.33 PM
root / root
0644
memfd.h
1.433 KB
11 Sep 2026 1.33 PM
root / root
0644
mempolicy.h
2.508 KB
11 Sep 2026 1.33 PM
root / root
0644
meye.h
2.47 KB
11 Sep 2026 1.33 PM
root / root
0644
mii.h
9.273 KB
11 Sep 2026 1.33 PM
root / root
0644
minix_fs.h
2.072 KB
11 Sep 2026 1.33 PM
root / root
0644
mman.h
1.745 KB
11 Sep 2026 1.33 PM
root / root
0644
mmtimer.h
2.067 KB
11 Sep 2026 1.33 PM
root / root
0644
module.h
0.286 KB
11 Sep 2026 1.33 PM
root / root
0644
mount.h
4.901 KB
11 Sep 2026 1.33 PM
root / root
0644
mpls.h
2.248 KB
11 Sep 2026 1.33 PM
root / root
0644
mpls_iptunnel.h
0.743 KB
11 Sep 2026 1.33 PM
root / root
0644
mptcp.h
3.675 KB
11 Sep 2026 1.33 PM
root / root
0644
mptcp_pm.h
4.304 KB
11 Sep 2026 1.33 PM
root / root
0644
mqueue.h
2.149 KB
11 Sep 2026 1.33 PM
root / root
0644
mroute.h
5.783 KB
11 Sep 2026 1.33 PM
root / root
0644
mroute6.h
4.814 KB
11 Sep 2026 1.33 PM
root / root
0644
mrp_bridge.h
1.668 KB
11 Sep 2026 1.33 PM
root / root
0644
msdos_fs.h
6.573 KB
11 Sep 2026 1.33 PM
root / root
0644
msg.h
3.307 KB
11 Sep 2026 1.33 PM
root / root
0644
mshv.h
7.932 KB
11 Sep 2026 1.33 PM
root / root
0644
mtio.h
7.983 KB
11 Sep 2026 1.33 PM
root / root
0644
nbd-netlink.h
2.352 KB
11 Sep 2026 1.33 PM
root / root
0644
nbd.h
3.771 KB
11 Sep 2026 1.33 PM
root / root
0644
ncsi.h
4.715 KB
11 Sep 2026 1.33 PM
root / root
0644
ndctl.h
6.669 KB
11 Sep 2026 1.33 PM
root / root
0644
neighbour.h
5.912 KB
11 Sep 2026 1.33 PM
root / root
0644
net.h
2.036 KB
11 Sep 2026 1.33 PM
root / root
0644
net_dropmon.h
2.854 KB
11 Sep 2026 1.33 PM
root / root
0644
net_namespace.h
0.698 KB
11 Sep 2026 1.33 PM
root / root
0644
net_shaper.h
2.522 KB
11 Sep 2026 1.33 PM
root / root
0644
net_tstamp.h
6.304 KB
11 Sep 2026 1.33 PM
root / root
0644
netconf.h
0.6 KB
11 Sep 2026 1.33 PM
root / root
0644
netdev.h
5.65 KB
11 Sep 2026 1.33 PM
root / root
0644
netdevice.h
2.2 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter.h
1.69 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter_arp.h
0.435 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter_bridge.h
1.141 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter_decnet.h
1.717 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter_ipv4.h
1.453 KB
11 Sep 2026 1.33 PM
root / root
0644
netfilter_ipv6.h
1.351 KB
11 Sep 2026 1.33 PM
root / root
0644
netlink.h
12.091 KB
11 Sep 2026 1.33 PM
root / root
0644
netlink_diag.h
1.488 KB
11 Sep 2026 1.33 PM
root / root
0644
netrom.h
0.788 KB
11 Sep 2026 1.33 PM
root / root
0644
nexthop.h
3.971 KB
11 Sep 2026 1.33 PM
root / root
0644
nfc.h
10.946 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs.h
4.358 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs2.h
1.434 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs3.h
2.396 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs4.h
6.538 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs4_mount.h
1.887 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs_fs.h
1.615 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs_idmap.h
2.19 KB
11 Sep 2026 1.33 PM
root / root
0644
nfs_mount.h
2.092 KB
11 Sep 2026 1.33 PM
root / root
0644
nfsacl.h
0.701 KB
11 Sep 2026 1.33 PM
root / root
0644
nfsd_netlink.h
1.948 KB
11 Sep 2026 1.33 PM
root / root
0644
nilfs2_api.h
7.411 KB
11 Sep 2026 1.33 PM
root / root
0644
nilfs2_ondisk.h
17.661 KB
11 Sep 2026 1.33 PM
root / root
0644
nitro_enclaves.h
12.853 KB
11 Sep 2026 1.33 PM
root / root
0644
nl80211.h
355.418 KB
11 Sep 2026 1.33 PM
root / root
0644
nsfs.h
0.624 KB
11 Sep 2026 1.33 PM
root / root
0644
nubus.h
7.999 KB
11 Sep 2026 1.33 PM
root / root
0644
nvme_ioctl.h
2.432 KB
11 Sep 2026 1.33 PM
root / root
0644
nvram.h
0.52 KB
11 Sep 2026 1.33 PM
root / root
0644
omap3isp.h
20.364 KB
11 Sep 2026 1.33 PM
root / root
0644
omapfb.h
5.779 KB
11 Sep 2026 1.33 PM
root / root
0644
oom.h
0.499 KB
11 Sep 2026 1.33 PM
root / root
0644
openat2.h
1.416 KB
11 Sep 2026 1.33 PM
root / root
0644
openvswitch.h
40.755 KB
11 Sep 2026 1.33 PM
root / root
0644
packet_diag.h
1.633 KB
11 Sep 2026 1.33 PM
root / root
0644
param.h
0.138 KB
11 Sep 2026 1.33 PM
root / root
0644
parport.h
3.559 KB
11 Sep 2026 1.33 PM
root / root
0644
patchkey.h
0.871 KB
11 Sep 2026 1.33 PM
root / root
0644
pci.h
1.348 KB
11 Sep 2026 1.33 PM
root / root
0644
pci_regs.h
61.889 KB
11 Sep 2026 1.33 PM
root / root
0644
pcitest.h
0.898 KB
11 Sep 2026 1.33 PM
root / root
0644
perf_event.h
42.685 KB
11 Sep 2026 1.33 PM
root / root
0644
personality.h
2.048 KB
11 Sep 2026 1.33 PM
root / root
0644
pfkeyv2.h
10.321 KB
11 Sep 2026 1.33 PM
root / root
0644
pfrut.h
7.815 KB
11 Sep 2026 1.33 PM
root / root
0644
pg.h
2.338 KB
11 Sep 2026 1.33 PM
root / root
0644
phantom.h
1.615 KB
11 Sep 2026 1.33 PM
root / root
0644
phonet.h
4.567 KB
11 Sep 2026 1.33 PM
root / root
0644
pidfd.h
3.021 KB
11 Sep 2026 1.33 PM
root / root
0644
pkt_cls.h
18.648 KB
11 Sep 2026 1.33 PM
root / root
0644
pkt_sched.h
28.753 KB
11 Sep 2026 1.33 PM
root / root
0644
pktcdvd.h
2.635 KB
11 Sep 2026 1.33 PM
root / root
0644
pmu.h
5.316 KB
11 Sep 2026 1.33 PM
root / root
0644
poll.h
0.021 KB
11 Sep 2026 1.33 PM
root / root
0644
posix_acl.h
1.225 KB
11 Sep 2026 1.33 PM
root / root
0644
posix_acl_xattr.h
1.089 KB
11 Sep 2026 1.33 PM
root / root
0644
posix_types.h
1.072 KB
11 Sep 2026 1.33 PM
root / root
0644
ppdev.h
3.208 KB
11 Sep 2026 1.33 PM
root / root
0644
ppp-comp.h
2.468 KB
11 Sep 2026 1.33 PM
root / root
0644
ppp-ioctl.h
5.595 KB
11 Sep 2026 1.33 PM
root / root
0644
ppp_defs.h
5.427 KB
11 Sep 2026 1.33 PM
root / root
0644
pps.h
4.623 KB
11 Sep 2026 1.33 PM
root / root
0644
pr.h
1.592 KB
11 Sep 2026 1.33 PM
root / root
0644
prctl.h
10.929 KB
11 Sep 2026 1.33 PM
root / root
0644
psample.h
2.572 KB
11 Sep 2026 1.33 PM
root / root
0644
psci.h
5.215 KB
11 Sep 2026 1.33 PM
root / root
0644
psp-dbc.h
5.155 KB
11 Sep 2026 1.33 PM
root / root
0644
psp-sev.h
7.968 KB
11 Sep 2026 1.33 PM
root / root
0644
ptp_clock.h
7.351 KB
11 Sep 2026 1.33 PM
root / root
0644
ptrace.h
4.293 KB
11 Sep 2026 1.33 PM
root / root
0644
qemu_fw_cfg.h
2.411 KB
11 Sep 2026 1.33 PM
root / root
0644
qnx4_fs.h
2.273 KB
11 Sep 2026 1.33 PM
root / root
0644
qnxtypes.h
0.609 KB
11 Sep 2026 1.33 PM
root / root
0644
qrtr.h
0.872 KB
11 Sep 2026 1.33 PM
root / root
0644
quota.h
6.164 KB
11 Sep 2026 1.33 PM
root / root
0644
radeonfb.h
0.352 KB
11 Sep 2026 1.33 PM
root / root
0644
random.h
1.382 KB
11 Sep 2026 1.33 PM
root / root
0644
rds.h
10.906 KB
11 Sep 2026 1.33 PM
root / root
0644
reboot.h
1.312 KB
11 Sep 2026 1.33 PM
root / root
0644
reiserfs_fs.h
0.757 KB
11 Sep 2026 1.33 PM
root / root
0644
reiserfs_xattr.h
0.521 KB
11 Sep 2026 1.33 PM
root / root
0644
remoteproc_cdev.h
1.076 KB
11 Sep 2026 1.33 PM
root / root
0644
resource.h
2.317 KB
11 Sep 2026 1.33 PM
root / root
0644
rfkill.h
6.453 KB
11 Sep 2026 1.33 PM
root / root
0644
rio_cm_cdev.h
3.172 KB
11 Sep 2026 1.33 PM
root / root
0644
rio_mport_cdev.h
9.111 KB
11 Sep 2026 1.33 PM
root / root
0644
rkisp1-config.h
30.627 KB
11 Sep 2026 1.33 PM
root / root
0644
romfs_fs.h
1.209 KB
11 Sep 2026 1.33 PM
root / root
0644
rose.h
2.18 KB
11 Sep 2026 1.33 PM
root / root
0644
route.h
2.277 KB
11 Sep 2026 1.33 PM
root / root
0644
rpl.h
0.795 KB
11 Sep 2026 1.33 PM
root / root
0644
rpl_iptunnel.h
0.414 KB
11 Sep 2026 1.33 PM
root / root
0644
rpmsg.h
1.029 KB
11 Sep 2026 1.33 PM
root / root
0644
rpmsg_types.h
0.281 KB
11 Sep 2026 1.33 PM
root / root
0644
rseq.h
4.789 KB
11 Sep 2026 1.33 PM
root / root
0644
rtc.h
5.191 KB
11 Sep 2026 1.33 PM
root / root
0644
rtnetlink.h
20.801 KB
11 Sep 2026 1.33 PM
root / root
0644
rxrpc.h
4.807 KB
11 Sep 2026 1.33 PM
root / root
0644
scc.h
4.516 KB
11 Sep 2026 1.33 PM
root / root
0644
sched.h
6.119 KB
11 Sep 2026 1.33 PM
root / root
0644
scif_ioctl.h
6.232 KB
11 Sep 2026 1.33 PM
root / root
0644
screen_info.h
2.421 KB
11 Sep 2026 1.33 PM
root / root
0644
sctp.h
35.178 KB
11 Sep 2026 1.33 PM
root / root
0644
seccomp.h
5.598 KB
11 Sep 2026 1.33 PM
root / root
0644
securebits.h
2.641 KB
11 Sep 2026 1.33 PM
root / root
0644
sed-opal.h
5.287 KB
11 Sep 2026 1.33 PM
root / root
0644
seg6.h
1.143 KB
11 Sep 2026 1.33 PM
root / root
0644
seg6_genl.h
0.575 KB
11 Sep 2026 1.33 PM
root / root
0644
seg6_hmac.h
0.413 KB
11 Sep 2026 1.33 PM
root / root
0644
seg6_iptunnel.h
0.961 KB
11 Sep 2026 1.33 PM
root / root
0644
seg6_local.h
3.776 KB
11 Sep 2026 1.33 PM
root / root
0644
selinux_netlink.h
1.167 KB
11 Sep 2026 1.33 PM
root / root
0644
sem.h
2.979 KB
11 Sep 2026 1.33 PM
root / root
0644
serial.h
4.901 KB
11 Sep 2026 1.33 PM
root / root
0644
serial_core.h
4.928 KB
11 Sep 2026 1.33 PM
root / root
0644
serial_reg.h
15.647 KB
11 Sep 2026 1.33 PM
root / root
0644
serio.h
2.089 KB
11 Sep 2026 1.33 PM
root / root
0644
sev-guest.h
2.467 KB
11 Sep 2026 1.33 PM
root / root
0644
shm.h
3.705 KB
11 Sep 2026 1.33 PM
root / root
0644
signal.h
0.379 KB
11 Sep 2026 1.33 PM
root / root
0644
signalfd.h
1.204 KB
11 Sep 2026 1.33 PM
root / root
0644
smc.h
8.692 KB
11 Sep 2026 1.33 PM
root / root
0644
smc_diag.h
2.882 KB
11 Sep 2026 1.33 PM
root / root
0644
smiapp.h
1.033 KB
11 Sep 2026 1.33 PM
root / root
0644
snmp.h
14.011 KB
11 Sep 2026 1.33 PM
root / root
0644
sock_diag.h
1.271 KB
11 Sep 2026 1.33 PM
root / root
0644
socket.h
0.897 KB
11 Sep 2026 1.33 PM
root / root
0644
sockios.h
6.686 KB
11 Sep 2026 1.33 PM
root / root
0644
sonet.h
2.236 KB
11 Sep 2026 1.33 PM
root / root
0644
sonypi.h
5.185 KB
11 Sep 2026 1.33 PM
root / root
0644
sound.h
1.208 KB
11 Sep 2026 1.33 PM
root / root
0644
soundcard.h
44.959 KB
11 Sep 2026 1.33 PM
root / root
0644
stat.h
7.23 KB
11 Sep 2026 1.33 PM
root / root
0644
stddef.h
1.686 KB
11 Sep 2026 1.33 PM
root / root
0644
stm.h
1.245 KB
11 Sep 2026 1.33 PM
root / root
0644
string.h
0.232 KB
11 Sep 2026 1.33 PM
root / root
0644
suspend_ioctls.h
1.397 KB
11 Sep 2026 1.33 PM
root / root
0644
swab.h
6.759 KB
11 Sep 2026 1.33 PM
root / root
0644
switchtec_ioctl.h
5.139 KB
11 Sep 2026 1.33 PM
root / root
0644
sync_file.h
3.494 KB
11 Sep 2026 1.33 PM
root / root
0644
synclink.h
8.774 KB
11 Sep 2026 1.33 PM
root / root
0644
sysctl.h
25.303 KB
11 Sep 2026 1.33 PM
root / root
0644
sysinfo.h
1.024 KB
11 Sep 2026 1.33 PM
root / root
0644
target_core_user.h
4.524 KB
11 Sep 2026 1.33 PM
root / root
0644
taskstats.h
8.127 KB
11 Sep 2026 1.33 PM
root / root
0644
tcp.h
11.705 KB
11 Sep 2026 1.33 PM
root / root
0644
tcp_metrics.h
1.938 KB
11 Sep 2026 1.33 PM
root / root
0644
tdx-guest.h
1.274 KB
11 Sep 2026 1.33 PM
root / root
0644
tee.h
13.091 KB
11 Sep 2026 1.33 PM
root / root
0644
termios.h
0.168 KB
11 Sep 2026 1.33 PM
root / root
0644
thermal.h
3.232 KB
11 Sep 2026 1.33 PM
root / root
0644
time.h
1.711 KB
11 Sep 2026 1.33 PM
root / root
0644
time_types.h
1.237 KB
11 Sep 2026 1.33 PM
root / root
0644
timerfd.h
0.914 KB
11 Sep 2026 1.33 PM
root / root
0644
times.h
0.271 KB
11 Sep 2026 1.33 PM
root / root
0644
timex.h
7.634 KB
11 Sep 2026 1.33 PM
root / root
0644
tiocl.h
1.688 KB
11 Sep 2026 1.33 PM
root / root
0644
tipc.h
8.618 KB
11 Sep 2026 1.33 PM
root / root
0644
tipc_config.h
14.516 KB
11 Sep 2026 1.33 PM
root / root
0644
tipc_netlink.h
9.175 KB
11 Sep 2026 1.33 PM
root / root
0644
tipc_sockets_diag.h
0.457 KB
11 Sep 2026 1.33 PM
root / root
0644
tls.h
7.057 KB
11 Sep 2026 1.33 PM
root / root
0644
toshiba.h
1.885 KB
11 Sep 2026 1.33 PM
root / root
0644
tps6594_pfsm.h
1.133 KB
11 Sep 2026 1.33 PM
root / root
0644
tty.h
1.548 KB
11 Sep 2026 1.33 PM
root / root
0644
tty_flags.h
4.396 KB
11 Sep 2026 1.33 PM
root / root
0644
types.h
1.598 KB
11 Sep 2026 1.33 PM
root / root
0644
udf_fs_i.h
0.681 KB
11 Sep 2026 1.33 PM
root / root
0644
udmabuf.h
0.628 KB
11 Sep 2026 1.33 PM
root / root
0644
udp.h
1.648 KB
11 Sep 2026 1.33 PM
root / root
0644
uhid.h
4.539 KB
11 Sep 2026 1.33 PM
root / root
0644
uinput.h
9.044 KB
11 Sep 2026 1.33 PM
root / root
0644
uio.h
0.715 KB
11 Sep 2026 1.33 PM
root / root
0644
uleds.h
0.779 KB
11 Sep 2026 1.33 PM
root / root
0644
ultrasound.h
4.455 KB
11 Sep 2026 1.33 PM
root / root
0644
um_timetravel.h
3.868 KB
11 Sep 2026 1.33 PM
root / root
0644
un.h
0.375 KB
11 Sep 2026 1.33 PM
root / root
0644
unistd.h
0.215 KB
11 Sep 2026 1.33 PM
root / root
0644
unix_diag.h
1.297 KB
11 Sep 2026 1.33 PM
root / root
0644
usbdevice_fs.h
8.122 KB
11 Sep 2026 1.33 PM
root / root
0644
usbip.h
1.468 KB
11 Sep 2026 1.33 PM
root / root
0644
userfaultfd.h
10.684 KB
11 Sep 2026 1.33 PM
root / root
0644
userio.h
1.48 KB
11 Sep 2026 1.33 PM
root / root
0644
utime.h
0.218 KB
11 Sep 2026 1.33 PM
root / root
0644
utsname.h
0.653 KB
11 Sep 2026 1.33 PM
root / root
0644
uuid.h
0.027 KB
11 Sep 2026 1.33 PM
root / root
0644
uvcvideo.h
2.565 KB
11 Sep 2026 1.33 PM
root / root
0644
v4l2-common.h
2.008 KB
11 Sep 2026 1.33 PM
root / root
0644
v4l2-controls.h
94.59 KB
11 Sep 2026 1.33 PM
root / root
0644
v4l2-dv-timings.h
30.394 KB
11 Sep 2026 1.33 PM
root / root
0644
v4l2-mediabus.h
5.304 KB
11 Sep 2026 1.33 PM
root / root
0644
v4l2-subdev.h
9.764 KB
11 Sep 2026 1.33 PM
root / root
0644
vbox_err.h
7.087 KB
11 Sep 2026 1.33 PM
root / root
0644
vbox_vmmdev_types.h
11.378 KB
11 Sep 2026 1.33 PM
root / root
0644
vboxguest.h
9.148 KB
11 Sep 2026 1.33 PM
root / root
0644
vdpa.h
1.743 KB
11 Sep 2026 1.33 PM
root / root
0644
vduse.h
9.578 KB
11 Sep 2026 1.33 PM
root / root
0644
version.h
0.365 KB
11 Sep 2026 1.33 PM
root / root
0644
veth.h
0.219 KB
11 Sep 2026 1.33 PM
root / root
0644
vfio.h
70.156 KB
11 Sep 2026 1.33 PM
root / root
0644
vfio_ccw.h
1.286 KB
11 Sep 2026 1.33 PM
root / root
0644
vfio_zdev.h
2.482 KB
11 Sep 2026 1.33 PM
root / root
0644
vhost.h
8.24 KB
11 Sep 2026 1.33 PM
root / root
0644
vhost_types.h
4.768 KB
11 Sep 2026 1.33 PM
root / root
0644
videodev2.h
99.302 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_9p.h
2.005 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_balloon.h
5.155 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_blk.h
9.745 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_bt.h
0.889 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_config.h
4.356 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_console.h
3.082 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_crypto.h
13.562 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_fs.h
0.56 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_gpio.h
1.697 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_gpu.h
11.334 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_i2c.h
1.158 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_ids.h
3.704 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_input.h
2.456 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_iommu.h
3.839 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_mem.h
6.989 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_mmio.h
4.853 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_net.h
14.725 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_pci.h
7.305 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_pcidev.h
2.333 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_pmem.h
0.626 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_ring.h
8.52 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_rng.h
0.259 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_scmi.h
0.622 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_scsi.h
5.942 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_snd.h
12.861 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_types.h
2.103 KB
11 Sep 2026 1.33 PM
root / root
0644
virtio_vsock.h
3.27 KB
11 Sep 2026 1.33 PM
root / root
0644
vm_sockets.h
7.182 KB
11 Sep 2026 1.33 PM
root / root
0644
vm_sockets_diag.h
0.94 KB
11 Sep 2026 1.33 PM
root / root
0644
vmcore.h
0.444 KB
11 Sep 2026 1.33 PM
root / root
0644
vsockmon.h
1.841 KB
11 Sep 2026 1.33 PM
root / root
0644
vt.h
2.987 KB
11 Sep 2026 1.33 PM
root / root
0644
vtpm_proxy.h
1.679 KB
11 Sep 2026 1.33 PM
root / root
0644
wait.h
0.666 KB
11 Sep 2026 1.33 PM
root / root
0644
watch_queue.h
3.408 KB
11 Sep 2026 1.33 PM
root / root
0644
watchdog.h
2.28 KB
11 Sep 2026 1.33 PM
root / root
0644
wireguard.h
7.566 KB
11 Sep 2026 1.33 PM
root / root
0644
wireless.h
41.703 KB
11 Sep 2026 1.33 PM
root / root
0644
wmi.h
1.72 KB
11 Sep 2026 1.33 PM
root / root
0644
wwan.h
0.288 KB
11 Sep 2026 1.33 PM
root / root
0644
x25.h
3.479 KB
11 Sep 2026 1.33 PM
root / root
0644
xattr.h
2.952 KB
11 Sep 2026 1.33 PM
root / root
0644
xdp_diag.h
1.434 KB
11 Sep 2026 1.33 PM
root / root
0644
xfrm.h
12.325 KB
11 Sep 2026 1.33 PM
root / root
0644
xilinx-v4l2-controls.h
2.906 KB
11 Sep 2026 1.33 PM
root / root
0644
zorro.h
3.219 KB
11 Sep 2026 1.33 PM
root / root
0644
zorro_ids.h
29.261 KB
11 Sep 2026 1.33 PM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF