✘✘ 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//fuse.h
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) */
/*
    This file defines the kernel interface of FUSE
    Copyright (C) 2001-2008  Miklos Szeredi <miklos@szeredi.hu>

    This program can be distributed under the terms of the GNU GPL.
    See the file COPYING.

    This -- and only this -- header file may also be distributed under
    the terms of the BSD Licence as follows:

    Copyright (C) 2001-2007 Miklos Szeredi. All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions
    are met:
    1. Redistributions of source code must retain the above copyright
       notice, this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright
       notice, this list of conditions and the following disclaimer in the
       documentation and/or other materials provided with the distribution.

    THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
    ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
    FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    SUCH DAMAGE.
*/

/*
 * This file defines the kernel interface of FUSE
 *
 * Protocol changelog:
 *
 * 7.1:
 *  - add the following messages:
 *      FUSE_SETATTR, FUSE_SYMLINK, FUSE_MKNOD, FUSE_MKDIR, FUSE_UNLINK,
 *      FUSE_RMDIR, FUSE_RENAME, FUSE_LINK, FUSE_OPEN, FUSE_READ, FUSE_WRITE,
 *      FUSE_RELEASE, FUSE_FSYNC, FUSE_FLUSH, FUSE_SETXATTR, FUSE_GETXATTR,
 *      FUSE_LISTXATTR, FUSE_REMOVEXATTR, FUSE_OPENDIR, FUSE_READDIR,
 *      FUSE_RELEASEDIR
 *  - add padding to messages to accommodate 32-bit servers on 64-bit kernels
 *
 * 7.2:
 *  - add FOPEN_DIRECT_IO and FOPEN_KEEP_CACHE flags
 *  - add FUSE_FSYNCDIR message
 *
 * 7.3:
 *  - add FUSE_ACCESS message
 *  - add FUSE_CREATE message
 *  - add filehandle to fuse_setattr_in
 *
 * 7.4:
 *  - add frsize to fuse_kstatfs
 *  - clean up request size limit checking
 *
 * 7.5:
 *  - add flags and max_write to fuse_init_out
 *
 * 7.6:
 *  - add max_readahead to fuse_init_in and fuse_init_out
 *
 * 7.7:
 *  - add FUSE_INTERRUPT message
 *  - add POSIX file lock support
 *
 * 7.8:
 *  - add lock_owner and flags fields to fuse_release_in
 *  - add FUSE_BMAP message
 *  - add FUSE_DESTROY message
 *
 * 7.9:
 *  - new fuse_getattr_in input argument of GETATTR
 *  - add lk_flags in fuse_lk_in
 *  - add lock_owner field to fuse_setattr_in, fuse_read_in and fuse_write_in
 *  - add blksize field to fuse_attr
 *  - add file flags field to fuse_read_in and fuse_write_in
 *  - Add ATIME_NOW and MTIME_NOW flags to fuse_setattr_in
 *
 * 7.10
 *  - add nonseekable open flag
 *
 * 7.11
 *  - add IOCTL message
 *  - add unsolicited notification support
 *  - add POLL message and NOTIFY_POLL notification
 *
 * 7.12
 *  - add umask flag to input argument of create, mknod and mkdir
 *  - add notification messages for invalidation of inodes and
 *    directory entries
 *
 * 7.13
 *  - make max number of background requests and congestion threshold
 *    tunables
 *
 * 7.14
 *  - add splice support to fuse device
 *
 * 7.15
 *  - add store notify
 *  - add retrieve notify
 *
 * 7.16
 *  - add BATCH_FORGET request
 *  - FUSE_IOCTL_UNRESTRICTED shall now return with array of 'struct
 *    fuse_ioctl_iovec' instead of ambiguous 'struct iovec'
 *  - add FUSE_IOCTL_32BIT flag
 *
 * 7.17
 *  - add FUSE_FLOCK_LOCKS and FUSE_RELEASE_FLOCK_UNLOCK
 *
 * 7.18
 *  - add FUSE_IOCTL_DIR flag
 *  - add FUSE_NOTIFY_DELETE
 *
 * 7.19
 *  - add FUSE_FALLOCATE
 *
 * 7.20
 *  - add FUSE_AUTO_INVAL_DATA
 *
 * 7.21
 *  - add FUSE_READDIRPLUS
 *  - send the requested events in POLL request
 *
 * 7.22
 *  - add FUSE_ASYNC_DIO
 *
 * 7.23
 *  - add FUSE_WRITEBACK_CACHE
 *  - add time_gran to fuse_init_out
 *  - add reserved space to fuse_init_out
 *  - add FATTR_CTIME
 *  - add ctime and ctimensec to fuse_setattr_in
 *  - add FUSE_RENAME2 request
 *  - add FUSE_NO_OPEN_SUPPORT flag
 *
 *  7.24
 *  - add FUSE_LSEEK for SEEK_HOLE and SEEK_DATA support
 *
 *  7.25
 *  - add FUSE_PARALLEL_DIROPS
 *
 *  7.26
 *  - add FUSE_HANDLE_KILLPRIV
 *  - add FUSE_POSIX_ACL
 *
 *  7.27
 *  - add FUSE_ABORT_ERROR
 *
 *  7.28
 *  - add FUSE_COPY_FILE_RANGE
 *  - add FOPEN_CACHE_DIR
 *  - add FUSE_MAX_PAGES, add max_pages to init_out
 *  - add FUSE_CACHE_SYMLINKS
 *
 *  7.29
 *  - add FUSE_NO_OPENDIR_SUPPORT flag
 *
 *  7.30
 *  - add FUSE_EXPLICIT_INVAL_DATA
 *  - add FUSE_IOCTL_COMPAT_X32
 *
 *  7.31
 *  - add FUSE_WRITE_KILL_PRIV flag
 *  - add FUSE_SETUPMAPPING and FUSE_REMOVEMAPPING
 *  - add map_alignment to fuse_init_out, add FUSE_MAP_ALIGNMENT flag
 *
 *  7.32
 *  - add flags to fuse_attr, add FUSE_ATTR_SUBMOUNT, add FUSE_SUBMOUNTS
 *
 *  7.33
 *  - add FUSE_HANDLE_KILLPRIV_V2, FUSE_WRITE_KILL_SUIDGID, FATTR_KILL_SUIDGID
 *  - add FUSE_OPEN_KILL_SUIDGID
 *  - extend fuse_setxattr_in, add FUSE_SETXATTR_EXT
 *  - add FUSE_SETXATTR_ACL_KILL_SGID
 *
 *  7.34
 *  - add FUSE_SYNCFS
 *
 *  7.35
 *  - add FOPEN_NOFLUSH
 *
 *  7.36
 *  - extend fuse_init_in with reserved fields, add FUSE_INIT_EXT init flag
 *  - add flags2 to fuse_init_in and fuse_init_out
 *  - add FUSE_SECURITY_CTX init flag
 *  - add security context to create, mkdir, symlink, and mknod requests
 *  - add FUSE_EXPIRE_ONLY flag to fuse_notify_inval_entry
 *  - add FUSE_HAS_EXPIRE_ONLY
 *
 *  7.37
 *  - add FUSE_TMPFILE
 */

#ifndef _LINUX_FUSE_H
#define _LINUX_FUSE_H

#include <stdint.h>

/*
 * Version negotiation:
 *
 * Both the kernel and userspace send the version they support in the
 * INIT request and reply respectively.
 *
 * If the major versions match then both shall use the smallest
 * of the two minor versions for communication.
 *
 * If the kernel supports a larger major version, then userspace shall
 * reply with the major version it supports, ignore the rest of the
 * INIT message and expect a new INIT message from the kernel with a
 * matching major version.
 *
 * If the library supports a larger major version, then it shall fall
 * back to the major protocol version sent by the kernel for
 * communication and reply with that major version (and an arbitrary
 * supported minor version).
 */

/** Version number of this interface */
#define FUSE_KERNEL_VERSION 7

/** Minor version number of this interface */
#define FUSE_KERNEL_MINOR_VERSION 37

/** The node ID of the root inode */
#define FUSE_ROOT_ID 1

/* Make sure all structures are padded to 64bit boundary, so 32bit
   userspace works under 64bit kernels */

struct fuse_attr {
	uint64_t	ino;
	uint64_t	size;
	uint64_t	blocks;
	uint64_t	atime;
	uint64_t	mtime;
	uint64_t	ctime;
	uint32_t	atimensec;
	uint32_t	mtimensec;
	uint32_t	ctimensec;
	uint32_t	mode;
	uint32_t	nlink;
	uint32_t	uid;
	uint32_t	gid;
	uint32_t	rdev;
	uint32_t	blksize;
	uint32_t	flags;
};

struct fuse_kstatfs {
	uint64_t	blocks;
	uint64_t	bfree;
	uint64_t	bavail;
	uint64_t	files;
	uint64_t	ffree;
	uint32_t	bsize;
	uint32_t	namelen;
	uint32_t	frsize;
	uint32_t	padding;
	uint32_t	spare[6];
};

struct fuse_file_lock {
	uint64_t	start;
	uint64_t	end;
	uint32_t	type;
	uint32_t	pid; /* tgid */
};

/**
 * Bitmasks for fuse_setattr_in.valid
 */
#define FATTR_MODE	(1 << 0)
#define FATTR_UID	(1 << 1)
#define FATTR_GID	(1 << 2)
#define FATTR_SIZE	(1 << 3)
#define FATTR_ATIME	(1 << 4)
#define FATTR_MTIME	(1 << 5)
#define FATTR_FH	(1 << 6)
#define FATTR_ATIME_NOW	(1 << 7)
#define FATTR_MTIME_NOW	(1 << 8)
#define FATTR_LOCKOWNER	(1 << 9)
#define FATTR_CTIME	(1 << 10)
#define FATTR_KILL_SUIDGID	(1 << 11)

/**
 * Flags returned by the OPEN request
 *
 * FOPEN_DIRECT_IO: bypass page cache for this open file
 * FOPEN_KEEP_CACHE: don't invalidate the data cache on open
 * FOPEN_NONSEEKABLE: the file is not seekable
 * FOPEN_CACHE_DIR: allow caching this directory
 * FOPEN_STREAM: the file is stream-like (no file position at all)
 * FOPEN_NOFLUSH: don't flush data cache on close (unless FUSE_WRITEBACK_CACHE)
 * FOPEN_PARALLEL_DIRECT_WRITES: Allow concurrent direct writes on the same inode
 */
#define FOPEN_DIRECT_IO		(1 << 0)
#define FOPEN_KEEP_CACHE	(1 << 1)
#define FOPEN_NONSEEKABLE	(1 << 2)
#define FOPEN_CACHE_DIR		(1 << 3)
#define FOPEN_STREAM		(1 << 4)
#define FOPEN_NOFLUSH		(1 << 5)
#define FOPEN_PARALLEL_DIRECT_WRITES	(1 << 6)

/**
 * INIT request/reply flags
 *
 * FUSE_ASYNC_READ: asynchronous read requests
 * FUSE_POSIX_LOCKS: remote locking for POSIX file locks
 * FUSE_FILE_OPS: kernel sends file handle for fstat, etc... (not yet supported)
 * FUSE_ATOMIC_O_TRUNC: handles the O_TRUNC open flag in the filesystem
 * FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
 * FUSE_BIG_WRITES: filesystem can handle write size larger than 4kB
 * FUSE_DONT_MASK: don't apply umask to file mode on create operations
 * FUSE_SPLICE_WRITE: kernel supports splice write on the device
 * FUSE_SPLICE_MOVE: kernel supports splice move on the device
 * FUSE_SPLICE_READ: kernel supports splice read on the device
 * FUSE_FLOCK_LOCKS: remote locking for BSD style file locks
 * FUSE_HAS_IOCTL_DIR: kernel supports ioctl on directories
 * FUSE_AUTO_INVAL_DATA: automatically invalidate cached pages
 * FUSE_DO_READDIRPLUS: do READDIRPLUS (READDIR+LOOKUP in one)
 * FUSE_READDIRPLUS_AUTO: adaptive readdirplus
 * FUSE_ASYNC_DIO: asynchronous direct I/O submission
 * FUSE_WRITEBACK_CACHE: use writeback cache for buffered writes
 * FUSE_NO_OPEN_SUPPORT: kernel supports zero-message opens
 * FUSE_PARALLEL_DIROPS: allow parallel lookups and readdir
 * FUSE_HANDLE_KILLPRIV: fs handles killing suid/sgid/cap on write/chown/trunc
 * FUSE_POSIX_ACL: filesystem supports posix acls
 * FUSE_ABORT_ERROR: reading the device after abort returns ECONNABORTED
 * FUSE_MAX_PAGES: init_out.max_pages contains the max number of req pages
 * FUSE_CACHE_SYMLINKS: cache READLINK responses
 * FUSE_NO_OPENDIR_SUPPORT: kernel supports zero-message opendir
 * FUSE_EXPLICIT_INVAL_DATA: only invalidate cached pages on explicit request
 * FUSE_MAP_ALIGNMENT: init_out.map_alignment contains log2(byte alignment) for
 *		       foffset and moffset fields in struct
 *		       fuse_setupmapping_out and fuse_removemapping_one.
 * FUSE_SUBMOUNTS: kernel supports auto-mounting directory submounts
 * FUSE_HANDLE_KILLPRIV_V2: fs kills suid/sgid/cap on write/chown/trunc.
 *			Upon write/truncate suid/sgid is only killed if caller
 *			does not have CAP_FSETID. Additionally upon
 *			write/truncate sgid is killed only if file has group
 *			execute permission. (Same as Linux VFS behavior).
 * FUSE_SETXATTR_EXT:	Server supports extended struct fuse_setxattr_in
 * FUSE_INIT_EXT: extended fuse_init_in request
 * FUSE_INIT_RESERVED: reserved, do not use
 * FUSE_SECURITY_CTX:	add security context to create, mkdir, symlink, and
 *			mknod
 * FUSE_CREATE_SUPP_GROUP: add supplementary group info to create, mkdir,
 *			symlink and mknod (single group that matches parent)
 * FUSE_HAS_EXPIRE_ONLY: kernel supports expiry-only entry invalidation
 */
#define FUSE_ASYNC_READ		(1 << 0)
#define FUSE_POSIX_LOCKS	(1 << 1)
#define FUSE_FILE_OPS		(1 << 2)
#define FUSE_ATOMIC_O_TRUNC	(1 << 3)
#define FUSE_EXPORT_SUPPORT	(1 << 4)
#define FUSE_BIG_WRITES		(1 << 5)
#define FUSE_DONT_MASK		(1 << 6)
#define FUSE_SPLICE_WRITE	(1 << 7)
#define FUSE_SPLICE_MOVE	(1 << 8)
#define FUSE_SPLICE_READ	(1 << 9)
#define FUSE_FLOCK_LOCKS	(1 << 10)
#define FUSE_HAS_IOCTL_DIR	(1 << 11)
#define FUSE_AUTO_INVAL_DATA	(1 << 12)
#define FUSE_DO_READDIRPLUS	(1 << 13)
#define FUSE_READDIRPLUS_AUTO	(1 << 14)
#define FUSE_ASYNC_DIO		(1 << 15)
#define FUSE_WRITEBACK_CACHE	(1 << 16)
#define FUSE_NO_OPEN_SUPPORT	(1 << 17)
#define FUSE_PARALLEL_DIROPS    (1 << 18)
#define FUSE_HANDLE_KILLPRIV	(1 << 19)
#define FUSE_POSIX_ACL		(1 << 20)
#define FUSE_ABORT_ERROR	(1 << 21)
#define FUSE_MAX_PAGES		(1 << 22)
#define FUSE_CACHE_SYMLINKS	(1 << 23)
#define FUSE_NO_OPENDIR_SUPPORT (1 << 24)
#define FUSE_EXPLICIT_INVAL_DATA (1 << 25)
#define FUSE_MAP_ALIGNMENT	(1 << 26)
#define FUSE_SUBMOUNTS		(1 << 27)
#define FUSE_HANDLE_KILLPRIV_V2	(1 << 28)
#define FUSE_SETXATTR_EXT	(1 << 29)
#define FUSE_INIT_EXT		(1 << 30)
#define FUSE_INIT_RESERVED	(1 << 31)
/* bits 32..63 get shifted down 32 bits into the flags2 field */
#define FUSE_SECURITY_CTX	(1ULL << 32)
#define FUSE_CREATE_SUPP_GROUP	(1ULL << 34)
#define FUSE_HAS_EXPIRE_ONLY	(1ULL << 35)

/**
 * CUSE INIT request/reply flags
 *
 * CUSE_UNRESTRICTED_IOCTL:  use unrestricted ioctl
 */
#define CUSE_UNRESTRICTED_IOCTL	(1 << 0)

/**
 * Release flags
 */
#define FUSE_RELEASE_FLUSH	(1 << 0)
#define FUSE_RELEASE_FLOCK_UNLOCK	(1 << 1)

/**
 * Getattr flags
 */
#define FUSE_GETATTR_FH		(1 << 0)

/**
 * Lock flags
 */
#define FUSE_LK_FLOCK		(1 << 0)

/**
 * WRITE flags
 *
 * FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
 * FUSE_WRITE_LOCKOWNER: lock_owner field is valid
 * FUSE_WRITE_KILL_SUIDGID: kill suid and sgid bits
 */
#define FUSE_WRITE_CACHE	(1 << 0)
#define FUSE_WRITE_LOCKOWNER	(1 << 1)
#define FUSE_WRITE_KILL_SUIDGID (1 << 2)

/* Obsolete alias; this flag implies killing suid/sgid only. */
#define FUSE_WRITE_KILL_PRIV	FUSE_WRITE_KILL_SUIDGID

/**
 * Read flags
 */
#define FUSE_READ_LOCKOWNER	(1 << 1)

/**
 * Ioctl flags
 *
 * FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine
 * FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed
 * FUSE_IOCTL_RETRY: retry with new iovecs
 * FUSE_IOCTL_32BIT: 32bit ioctl
 * FUSE_IOCTL_DIR: is a directory
 * FUSE_IOCTL_COMPAT_X32: x32 compat ioctl on 64bit machine (64bit time_t)
 *
 * FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
 */
#define FUSE_IOCTL_COMPAT	(1 << 0)
#define FUSE_IOCTL_UNRESTRICTED	(1 << 1)
#define FUSE_IOCTL_RETRY	(1 << 2)
#define FUSE_IOCTL_32BIT	(1 << 3)
#define FUSE_IOCTL_DIR		(1 << 4)
#define FUSE_IOCTL_COMPAT_X32	(1 << 5)

#define FUSE_IOCTL_MAX_IOV	256

/**
 * Poll flags
 *
 * FUSE_POLL_SCHEDULE_NOTIFY: request poll notify
 */
#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)

/**
 * Fsync flags
 *
 * FUSE_FSYNC_FDATASYNC: Sync data only, not metadata
 */
#define FUSE_FSYNC_FDATASYNC	(1 << 0)

/**
 * fuse_attr flags
 *
 * FUSE_ATTR_SUBMOUNT: Object is a submount root
 */
#define FUSE_ATTR_SUBMOUNT      (1 << 0)

/**
 * Open flags
 * FUSE_OPEN_KILL_SUIDGID: Kill suid and sgid if executable
 */
#define FUSE_OPEN_KILL_SUIDGID	(1 << 0)

/**
 * setxattr flags
 * FUSE_SETXATTR_ACL_KILL_SGID: Clear SGID when system.posix_acl_access is set
 */
#define FUSE_SETXATTR_ACL_KILL_SGID	(1 << 0)

/**
 * notify_inval_entry flags
 * FUSE_EXPIRE_ONLY
 */
#define FUSE_EXPIRE_ONLY		(1 << 0)

/**
 * extension type
 * FUSE_MAX_NR_SECCTX: maximum value of &fuse_secctx_header.nr_secctx
 * FUSE_EXT_GROUPS: &fuse_supp_groups extension
 */
enum fuse_ext_type {
	/* Types 0..31 are reserved for fuse_secctx_header */
	FUSE_MAX_NR_SECCTX	= 31,
	FUSE_EXT_GROUPS		= 32,
};

enum fuse_opcode {
	FUSE_LOOKUP		= 1,
	FUSE_FORGET		= 2,  /* no reply */
	FUSE_GETATTR		= 3,
	FUSE_SETATTR		= 4,
	FUSE_READLINK		= 5,
	FUSE_SYMLINK		= 6,
	FUSE_MKNOD		= 8,
	FUSE_MKDIR		= 9,
	FUSE_UNLINK		= 10,
	FUSE_RMDIR		= 11,
	FUSE_RENAME		= 12,
	FUSE_LINK		= 13,
	FUSE_OPEN		= 14,
	FUSE_READ		= 15,
	FUSE_WRITE		= 16,
	FUSE_STATFS		= 17,
	FUSE_RELEASE		= 18,
	FUSE_FSYNC		= 20,
	FUSE_SETXATTR		= 21,
	FUSE_GETXATTR		= 22,
	FUSE_LISTXATTR		= 23,
	FUSE_REMOVEXATTR	= 24,
	FUSE_FLUSH		= 25,
	FUSE_INIT		= 26,
	FUSE_OPENDIR		= 27,
	FUSE_READDIR		= 28,
	FUSE_RELEASEDIR		= 29,
	FUSE_FSYNCDIR		= 30,
	FUSE_GETLK		= 31,
	FUSE_SETLK		= 32,
	FUSE_SETLKW		= 33,
	FUSE_ACCESS		= 34,
	FUSE_CREATE		= 35,
	FUSE_INTERRUPT		= 36,
	FUSE_BMAP		= 37,
	FUSE_DESTROY		= 38,
	FUSE_IOCTL		= 39,
	FUSE_POLL		= 40,
	FUSE_NOTIFY_REPLY	= 41,
	FUSE_BATCH_FORGET	= 42,
	FUSE_FALLOCATE		= 43,
	FUSE_READDIRPLUS	= 44,
	FUSE_RENAME2		= 45,
	FUSE_LSEEK		= 46,
	FUSE_COPY_FILE_RANGE	= 47,
	FUSE_SETUPMAPPING	= 48,
	FUSE_REMOVEMAPPING	= 49,
	FUSE_SYNCFS		= 50,
	FUSE_TMPFILE		= 51,

	/* CUSE specific operations */
	CUSE_INIT		= 4096,

	/* Reserved opcodes: helpful to detect structure endian-ness */
	CUSE_INIT_BSWAP_RESERVED	= 1048576,	/* CUSE_INIT << 8 */
	FUSE_INIT_BSWAP_RESERVED	= 436207616,	/* FUSE_INIT << 24 */
};

enum fuse_notify_code {
	FUSE_NOTIFY_POLL   = 1,
	FUSE_NOTIFY_INVAL_INODE = 2,
	FUSE_NOTIFY_INVAL_ENTRY = 3,
	FUSE_NOTIFY_STORE = 4,
	FUSE_NOTIFY_RETRIEVE = 5,
	FUSE_NOTIFY_DELETE = 6,
	FUSE_NOTIFY_CODE_MAX,
};

/* The read buffer is required to be at least 8k, but may be much larger */
#define FUSE_MIN_READ_BUFFER 8192

#define FUSE_COMPAT_ENTRY_OUT_SIZE 120

struct fuse_entry_out {
	uint64_t	nodeid;		/* Inode ID */
	uint64_t	generation;	/* Inode generation: nodeid:gen must
					   be unique for the fs's lifetime */
	uint64_t	entry_valid;	/* Cache timeout for the name */
	uint64_t	attr_valid;	/* Cache timeout for the attributes */
	uint32_t	entry_valid_nsec;
	uint32_t	attr_valid_nsec;
	struct fuse_attr attr;
};

struct fuse_forget_in {
	uint64_t	nlookup;
};

struct fuse_forget_one {
	uint64_t	nodeid;
	uint64_t	nlookup;
};

struct fuse_batch_forget_in {
	uint32_t	count;
	uint32_t	dummy;
};

struct fuse_getattr_in {
	uint32_t	getattr_flags;
	uint32_t	dummy;
	uint64_t	fh;
};

#define FUSE_COMPAT_ATTR_OUT_SIZE 96

struct fuse_attr_out {
	uint64_t	attr_valid;	/* Cache timeout for the attributes */
	uint32_t	attr_valid_nsec;
	uint32_t	dummy;
	struct fuse_attr attr;
};

#define FUSE_COMPAT_MKNOD_IN_SIZE 8

struct fuse_mknod_in {
	uint32_t	mode;
	uint32_t	rdev;
	uint32_t	umask;
	uint32_t	padding;
};

struct fuse_mkdir_in {
	uint32_t	mode;
	uint32_t	umask;
};

struct fuse_rename_in {
	uint64_t	newdir;
};

struct fuse_rename2_in {
	uint64_t	newdir;
	uint32_t	flags;
	uint32_t	padding;
};

struct fuse_link_in {
	uint64_t	oldnodeid;
};

struct fuse_setattr_in {
	uint32_t	valid;
	uint32_t	padding;
	uint64_t	fh;
	uint64_t	size;
	uint64_t	lock_owner;
	uint64_t	atime;
	uint64_t	mtime;
	uint64_t	ctime;
	uint32_t	atimensec;
	uint32_t	mtimensec;
	uint32_t	ctimensec;
	uint32_t	mode;
	uint32_t	unused4;
	uint32_t	uid;
	uint32_t	gid;
	uint32_t	unused5;
};

struct fuse_open_in {
	uint32_t	flags;
	uint32_t	open_flags;	/* FUSE_OPEN_... */
};

struct fuse_create_in {
	uint32_t	flags;
	uint32_t	mode;
	uint32_t	umask;
	uint32_t	open_flags;	/* FUSE_OPEN_... */
};

struct fuse_open_out {
	uint64_t	fh;
	uint32_t	open_flags;
	uint32_t	padding;
};

struct fuse_release_in {
	uint64_t	fh;
	uint32_t	flags;
	uint32_t	release_flags;
	uint64_t	lock_owner;
};

struct fuse_flush_in {
	uint64_t	fh;
	uint32_t	unused;
	uint32_t	padding;
	uint64_t	lock_owner;
};

struct fuse_read_in {
	uint64_t	fh;
	uint64_t	offset;
	uint32_t	size;
	uint32_t	read_flags;
	uint64_t	lock_owner;
	uint32_t	flags;
	uint32_t	padding;
};

#define FUSE_COMPAT_WRITE_IN_SIZE 24

struct fuse_write_in {
	uint64_t	fh;
	uint64_t	offset;
	uint32_t	size;
	uint32_t	write_flags;
	uint64_t	lock_owner;
	uint32_t	flags;
	uint32_t	padding;
};

struct fuse_write_out {
	uint32_t	size;
	uint32_t	padding;
};

#define FUSE_COMPAT_STATFS_SIZE 48

struct fuse_statfs_out {
	struct fuse_kstatfs st;
};

struct fuse_fsync_in {
	uint64_t	fh;
	uint32_t	fsync_flags;
	uint32_t	padding;
};

#define FUSE_COMPAT_SETXATTR_IN_SIZE 8

struct fuse_setxattr_in {
	uint32_t	size;
	uint32_t	flags;
	uint32_t	setxattr_flags;
	uint32_t	padding;
};

struct fuse_getxattr_in {
	uint32_t	size;
	uint32_t	padding;
};

struct fuse_getxattr_out {
	uint32_t	size;
	uint32_t	padding;
};

struct fuse_lk_in {
	uint64_t	fh;
	uint64_t	owner;
	struct fuse_file_lock lk;
	uint32_t	lk_flags;
	uint32_t	padding;
};

struct fuse_lk_out {
	struct fuse_file_lock lk;
};

struct fuse_access_in {
	uint32_t	mask;
	uint32_t	padding;
};

struct fuse_init_in {
	uint32_t	major;
	uint32_t	minor;
	uint32_t	max_readahead;
	uint32_t	flags;
	uint32_t	flags2;
	uint32_t	unused[11];
};

#define FUSE_COMPAT_INIT_OUT_SIZE 8
#define FUSE_COMPAT_22_INIT_OUT_SIZE 24

struct fuse_init_out {
	uint32_t	major;
	uint32_t	minor;
	uint32_t	max_readahead;
	uint32_t	flags;
	uint16_t	max_background;
	uint16_t	congestion_threshold;
	uint32_t	max_write;
	uint32_t	time_gran;
	uint16_t	max_pages;
	uint16_t	map_alignment;
	uint32_t	flags2;
	uint32_t	unused[7];
};

#define CUSE_INIT_INFO_MAX 4096

struct cuse_init_in {
	uint32_t	major;
	uint32_t	minor;
	uint32_t	unused;
	uint32_t	flags;
};

struct cuse_init_out {
	uint32_t	major;
	uint32_t	minor;
	uint32_t	unused;
	uint32_t	flags;
	uint32_t	max_read;
	uint32_t	max_write;
	uint32_t	dev_major;		/* chardev major */
	uint32_t	dev_minor;		/* chardev minor */
	uint32_t	spare[10];
};

struct fuse_interrupt_in {
	uint64_t	unique;
};

struct fuse_bmap_in {
	uint64_t	block;
	uint32_t	blocksize;
	uint32_t	padding;
};

struct fuse_bmap_out {
	uint64_t	block;
};

struct fuse_ioctl_in {
	uint64_t	fh;
	uint32_t	flags;
	uint32_t	cmd;
	uint64_t	arg;
	uint32_t	in_size;
	uint32_t	out_size;
};

struct fuse_ioctl_iovec {
	uint64_t	base;
	uint64_t	len;
};

struct fuse_ioctl_out {
	int32_t		result;
	uint32_t	flags;
	uint32_t	in_iovs;
	uint32_t	out_iovs;
};

struct fuse_poll_in {
	uint64_t	fh;
	uint64_t	kh;
	uint32_t	flags;
	uint32_t	events;
};

struct fuse_poll_out {
	uint32_t	revents;
	uint32_t	padding;
};

struct fuse_notify_poll_wakeup_out {
	uint64_t	kh;
};

struct fuse_fallocate_in {
	uint64_t	fh;
	uint64_t	offset;
	uint64_t	length;
	uint32_t	mode;
	uint32_t	padding;
};

struct fuse_in_header {
	uint32_t	len;
	uint32_t	opcode;
	uint64_t	unique;
	uint64_t	nodeid;
	uint32_t	uid;
	uint32_t	gid;
	uint32_t	pid;
	uint16_t	total_extlen; /* length of extensions in 8byte units */
	uint16_t	padding;
};

struct fuse_out_header {
	uint32_t	len;
	int32_t		error;
	uint64_t	unique;
};

struct fuse_dirent {
	uint64_t	ino;
	uint64_t	off;
	uint32_t	namelen;
	uint32_t	type;
	char name[];
};

/* Align variable length records to 64bit boundary */
#define FUSE_REC_ALIGN(x) \
	(((x) + sizeof(uint64_t) - 1) & ~(sizeof(uint64_t) - 1))

#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
#define FUSE_DIRENT_ALIGN(x) FUSE_REC_ALIGN(x)
#define FUSE_DIRENT_SIZE(d) \
	FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)

struct fuse_direntplus {
	struct fuse_entry_out entry_out;
	struct fuse_dirent dirent;
};

#define FUSE_NAME_OFFSET_DIRENTPLUS \
	offsetof(struct fuse_direntplus, dirent.name)
#define FUSE_DIRENTPLUS_SIZE(d) \
	FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET_DIRENTPLUS + (d)->dirent.namelen)

struct fuse_notify_inval_inode_out {
	uint64_t	ino;
	int64_t		off;
	int64_t		len;
};

struct fuse_notify_inval_entry_out {
	uint64_t	parent;
	uint32_t	namelen;
	uint32_t	flags;
};

struct fuse_notify_delete_out {
	uint64_t	parent;
	uint64_t	child;
	uint32_t	namelen;
	uint32_t	padding;
};

struct fuse_notify_store_out {
	uint64_t	nodeid;
	uint64_t	offset;
	uint32_t	size;
	uint32_t	padding;
};

struct fuse_notify_retrieve_out {
	uint64_t	notify_unique;
	uint64_t	nodeid;
	uint64_t	offset;
	uint32_t	size;
	uint32_t	padding;
};

/* Matches the size of fuse_write_in */
struct fuse_notify_retrieve_in {
	uint64_t	dummy1;
	uint64_t	offset;
	uint32_t	size;
	uint32_t	dummy2;
	uint64_t	dummy3;
	uint64_t	dummy4;
};

/* Device ioctls: */
#define FUSE_DEV_IOC_MAGIC		229
#define FUSE_DEV_IOC_CLONE		_IOR(FUSE_DEV_IOC_MAGIC, 0, uint32_t)

struct fuse_lseek_in {
	uint64_t	fh;
	uint64_t	offset;
	uint32_t	whence;
	uint32_t	padding;
};

struct fuse_lseek_out {
	uint64_t	offset;
};

struct fuse_copy_file_range_in {
	uint64_t	fh_in;
	uint64_t	off_in;
	uint64_t	nodeid_out;
	uint64_t	fh_out;
	uint64_t	off_out;
	uint64_t	len;
	uint64_t	flags;
};

#define FUSE_SETUPMAPPING_FLAG_WRITE (1ull << 0)
#define FUSE_SETUPMAPPING_FLAG_READ (1ull << 1)
struct fuse_setupmapping_in {
	/* An already open handle */
	uint64_t	fh;
	/* Offset into the file to start the mapping */
	uint64_t	foffset;
	/* Length of mapping required */
	uint64_t	len;
	/* Flags, FUSE_SETUPMAPPING_FLAG_* */
	uint64_t	flags;
	/* Offset in Memory Window */
	uint64_t	moffset;
};

struct fuse_removemapping_in {
	/* number of fuse_removemapping_one follows */
	uint32_t        count;
};

struct fuse_removemapping_one {
	/* Offset into the dax window start the unmapping */
	uint64_t        moffset;
	/* Length of mapping required */
	uint64_t	len;
};

#define FUSE_REMOVEMAPPING_MAX_ENTRY   \
		(PAGE_SIZE / sizeof(struct fuse_removemapping_one))

struct fuse_syncfs_in {
	uint64_t	padding;
};

/*
 * For each security context, send fuse_secctx with size of security context
 * fuse_secctx will be followed by security context name and this in turn
 * will be followed by actual context label.
 * fuse_secctx, name, context
 */
struct fuse_secctx {
	uint32_t	size;
	uint32_t	padding;
};

/*
 * Contains the information about how many fuse_secctx structures are being
 * sent and what's the total size of all security contexts (including
 * size of fuse_secctx_header).
 *
 */
struct fuse_secctx_header {
	uint32_t	size;
	uint32_t	nr_secctx;
};

/**
 * struct fuse_ext_header - extension header
 * @size: total size of this extension including this header
 * @type: type of extension
 *
 * This is made compatible with fuse_secctx_header by using type values >
 * FUSE_MAX_NR_SECCTX
 */
struct fuse_ext_header {
	uint32_t	size;
	uint32_t	type;
};

/**
 * struct fuse_supp_groups - Supplementary group extension
 * @nr_groups: number of supplementary groups
 * @groups: flexible array of group IDs
 */
struct fuse_supp_groups {
	uint32_t	nr_groups;
	uint32_t	groups[];
};

#endif /* _LINUX_FUSE_H */

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