✘✘ 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//iommufd.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/* Copyright (c) 2021-2022, NVIDIA CORPORATION & AFFILIATES.
 */
#ifndef _IOMMUFD_H
#define _IOMMUFD_H

#include <linux/ioctl.h>
#include <linux/types.h>

#define IOMMUFD_TYPE (';')

/**
 * DOC: General ioctl format
 *
 * The ioctl interface follows a general format to allow for extensibility. Each
 * ioctl is passed in a structure pointer as the argument providing the size of
 * the structure in the first u32. The kernel checks that any structure space
 * beyond what it understands is 0. This allows userspace to use the backward
 * compatible portion while consistently using the newer, larger, structures.
 *
 * ioctls use a standard meaning for common errnos:
 *
 *  - ENOTTY: The IOCTL number itself is not supported at all
 *  - E2BIG: The IOCTL number is supported, but the provided structure has
 *    non-zero in a part the kernel does not understand.
 *  - EOPNOTSUPP: The IOCTL number is supported, and the structure is
 *    understood, however a known field has a value the kernel does not
 *    understand or support.
 *  - EINVAL: Everything about the IOCTL was understood, but a field is not
 *    correct.
 *  - ENOENT: An ID or IOVA provided does not exist.
 *  - ENOMEM: Out of memory.
 *  - EOVERFLOW: Mathematics overflowed.
 *
 * As well as additional errnos, within specific ioctls.
 */
enum {
	IOMMUFD_CMD_BASE = 0x80,
	IOMMUFD_CMD_DESTROY = IOMMUFD_CMD_BASE,
	IOMMUFD_CMD_IOAS_ALLOC = 0x81,
	IOMMUFD_CMD_IOAS_ALLOW_IOVAS = 0x82,
	IOMMUFD_CMD_IOAS_COPY = 0x83,
	IOMMUFD_CMD_IOAS_IOVA_RANGES = 0x84,
	IOMMUFD_CMD_IOAS_MAP = 0x85,
	IOMMUFD_CMD_IOAS_UNMAP = 0x86,
	IOMMUFD_CMD_OPTION = 0x87,
	IOMMUFD_CMD_VFIO_IOAS = 0x88,
	IOMMUFD_CMD_HWPT_ALLOC = 0x89,
	IOMMUFD_CMD_GET_HW_INFO = 0x8a,
	IOMMUFD_CMD_HWPT_SET_DIRTY_TRACKING = 0x8b,
	IOMMUFD_CMD_HWPT_GET_DIRTY_BITMAP = 0x8c,
	IOMMUFD_CMD_HWPT_INVALIDATE = 0x8d,
	IOMMUFD_CMD_FAULT_QUEUE_ALLOC = 0x8e,
	IOMMUFD_CMD_IOAS_MAP_FILE = 0x8f,
	IOMMUFD_CMD_VIOMMU_ALLOC = 0x90,
	IOMMUFD_CMD_VDEVICE_ALLOC = 0x91,
	IOMMUFD_CMD_IOAS_CHANGE_PROCESS = 0x92,
	IOMMUFD_CMD_VEVENTQ_ALLOC = 0x93,
	IOMMUFD_CMD_HW_QUEUE_ALLOC = 0x94,
};

/**
 * struct iommu_destroy - ioctl(IOMMU_DESTROY)
 * @size: sizeof(struct iommu_destroy)
 * @id: iommufd object ID to destroy. Can be any destroyable object type.
 *
 * Destroy any object held within iommufd.
 */
struct iommu_destroy {
	__u32 size;
	__u32 id;
};
#define IOMMU_DESTROY _IO(IOMMUFD_TYPE, IOMMUFD_CMD_DESTROY)

/**
 * struct iommu_ioas_alloc - ioctl(IOMMU_IOAS_ALLOC)
 * @size: sizeof(struct iommu_ioas_alloc)
 * @flags: Must be 0
 * @out_ioas_id: Output IOAS ID for the allocated object
 *
 * Allocate an IO Address Space (IOAS) which holds an IO Virtual Address (IOVA)
 * to memory mapping.
 */
struct iommu_ioas_alloc {
	__u32 size;
	__u32 flags;
	__u32 out_ioas_id;
};
#define IOMMU_IOAS_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_ALLOC)

/**
 * struct iommu_iova_range - ioctl(IOMMU_IOVA_RANGE)
 * @start: First IOVA
 * @last: Inclusive last IOVA
 *
 * An interval in IOVA space.
 */
struct iommu_iova_range {
	__aligned_u64 start;
	__aligned_u64 last;
};

/**
 * struct iommu_ioas_iova_ranges - ioctl(IOMMU_IOAS_IOVA_RANGES)
 * @size: sizeof(struct iommu_ioas_iova_ranges)
 * @ioas_id: IOAS ID to read ranges from
 * @num_iovas: Input/Output total number of ranges in the IOAS
 * @__reserved: Must be 0
 * @allowed_iovas: Pointer to the output array of struct iommu_iova_range
 * @out_iova_alignment: Minimum alignment required for mapping IOVA
 *
 * Query an IOAS for ranges of allowed IOVAs. Mapping IOVA outside these ranges
 * is not allowed. num_iovas will be set to the total number of iovas and
 * the allowed_iovas[] will be filled in as space permits.
 *
 * The allowed ranges are dependent on the HW path the DMA operation takes, and
 * can change during the lifetime of the IOAS. A fresh empty IOAS will have a
 * full range, and each attached device will narrow the ranges based on that
 * device's HW restrictions. Detaching a device can widen the ranges. Userspace
 * should query ranges after every attach/detach to know what IOVAs are valid
 * for mapping.
 *
 * On input num_iovas is the length of the allowed_iovas array. On output it is
 * the total number of iovas filled in. The ioctl will return -EMSGSIZE and set
 * num_iovas to the required value if num_iovas is too small. In this case the
 * caller should allocate a larger output array and re-issue the ioctl.
 *
 * out_iova_alignment returns the minimum IOVA alignment that can be given
 * to IOMMU_IOAS_MAP/COPY. IOVA's must satisfy::
 *
 *   starting_iova % out_iova_alignment == 0
 *   (starting_iova + length) % out_iova_alignment == 0
 *
 * out_iova_alignment can be 1 indicating any IOVA is allowed. It cannot
 * be higher than the system PAGE_SIZE.
 */
struct iommu_ioas_iova_ranges {
	__u32 size;
	__u32 ioas_id;
	__u32 num_iovas;
	__u32 __reserved;
	__aligned_u64 allowed_iovas;
	__aligned_u64 out_iova_alignment;
};
#define IOMMU_IOAS_IOVA_RANGES _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_IOVA_RANGES)

/**
 * struct iommu_ioas_allow_iovas - ioctl(IOMMU_IOAS_ALLOW_IOVAS)
 * @size: sizeof(struct iommu_ioas_allow_iovas)
 * @ioas_id: IOAS ID to allow IOVAs from
 * @num_iovas: Input/Output total number of ranges in the IOAS
 * @__reserved: Must be 0
 * @allowed_iovas: Pointer to array of struct iommu_iova_range
 *
 * Ensure a range of IOVAs are always available for allocation. If this call
 * succeeds then IOMMU_IOAS_IOVA_RANGES will never return a list of IOVA ranges
 * that are narrower than the ranges provided here. This call will fail if
 * IOMMU_IOAS_IOVA_RANGES is currently narrower than the given ranges.
 *
 * When an IOAS is first created the IOVA_RANGES will be maximally sized, and as
 * devices are attached the IOVA will narrow based on the device restrictions.
 * When an allowed range is specified any narrowing will be refused, ie device
 * attachment can fail if the device requires limiting within the allowed range.
 *
 * Automatic IOVA allocation is also impacted by this call. MAP will only
 * allocate within the allowed IOVAs if they are present.
 *
 * This call replaces the entire allowed list with the given list.
 */
struct iommu_ioas_allow_iovas {
	__u32 size;
	__u32 ioas_id;
	__u32 num_iovas;
	__u32 __reserved;
	__aligned_u64 allowed_iovas;
};
#define IOMMU_IOAS_ALLOW_IOVAS _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_ALLOW_IOVAS)

/**
 * enum iommufd_ioas_map_flags - Flags for map and copy
 * @IOMMU_IOAS_MAP_FIXED_IOVA: If clear the kernel will compute an appropriate
 *                             IOVA to place the mapping at
 * @IOMMU_IOAS_MAP_WRITEABLE: DMA is allowed to write to this mapping
 * @IOMMU_IOAS_MAP_READABLE: DMA is allowed to read from this mapping
 */
enum iommufd_ioas_map_flags {
	IOMMU_IOAS_MAP_FIXED_IOVA = 1 << 0,
	IOMMU_IOAS_MAP_WRITEABLE = 1 << 1,
	IOMMU_IOAS_MAP_READABLE = 1 << 2,
};

/**
 * struct iommu_ioas_map - ioctl(IOMMU_IOAS_MAP)
 * @size: sizeof(struct iommu_ioas_map)
 * @flags: Combination of enum iommufd_ioas_map_flags
 * @ioas_id: IOAS ID to change the mapping of
 * @__reserved: Must be 0
 * @user_va: Userspace pointer to start mapping from
 * @length: Number of bytes to map
 * @iova: IOVA the mapping was placed at. If IOMMU_IOAS_MAP_FIXED_IOVA is set
 *        then this must be provided as input.
 *
 * Set an IOVA mapping from a user pointer. If FIXED_IOVA is specified then the
 * mapping will be established at iova, otherwise a suitable location based on
 * the reserved and allowed lists will be automatically selected and returned in
 * iova.
 *
 * If IOMMU_IOAS_MAP_FIXED_IOVA is specified then the iova range must currently
 * be unused, existing IOVA cannot be replaced.
 */
struct iommu_ioas_map {
	__u32 size;
	__u32 flags;
	__u32 ioas_id;
	__u32 __reserved;
	__aligned_u64 user_va;
	__aligned_u64 length;
	__aligned_u64 iova;
};
#define IOMMU_IOAS_MAP _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_MAP)

/**
 * struct iommu_ioas_map_file - ioctl(IOMMU_IOAS_MAP_FILE)
 * @size: sizeof(struct iommu_ioas_map_file)
 * @flags: same as for iommu_ioas_map
 * @ioas_id: same as for iommu_ioas_map
 * @fd: the memfd to map
 * @start: byte offset from start of file to map from
 * @length: same as for iommu_ioas_map
 * @iova: same as for iommu_ioas_map
 *
 * Set an IOVA mapping from a memfd file.  All other arguments and semantics
 * match those of IOMMU_IOAS_MAP.
 */
struct iommu_ioas_map_file {
	__u32 size;
	__u32 flags;
	__u32 ioas_id;
	__s32 fd;
	__aligned_u64 start;
	__aligned_u64 length;
	__aligned_u64 iova;
};
#define IOMMU_IOAS_MAP_FILE _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_MAP_FILE)

/**
 * struct iommu_ioas_copy - ioctl(IOMMU_IOAS_COPY)
 * @size: sizeof(struct iommu_ioas_copy)
 * @flags: Combination of enum iommufd_ioas_map_flags
 * @dst_ioas_id: IOAS ID to change the mapping of
 * @src_ioas_id: IOAS ID to copy from
 * @length: Number of bytes to copy and map
 * @dst_iova: IOVA the mapping was placed at. If IOMMU_IOAS_MAP_FIXED_IOVA is
 *            set then this must be provided as input.
 * @src_iova: IOVA to start the copy
 *
 * Copy an already existing mapping from src_ioas_id and establish it in
 * dst_ioas_id. The src iova/length must exactly match a range used with
 * IOMMU_IOAS_MAP.
 *
 * This may be used to efficiently clone a subset of an IOAS to another, or as a
 * kind of 'cache' to speed up mapping. Copy has an efficiency advantage over
 * establishing equivalent new mappings, as internal resources are shared, and
 * the kernel will pin the user memory only once.
 */
struct iommu_ioas_copy {
	__u32 size;
	__u32 flags;
	__u32 dst_ioas_id;
	__u32 src_ioas_id;
	__aligned_u64 length;
	__aligned_u64 dst_iova;
	__aligned_u64 src_iova;
};
#define IOMMU_IOAS_COPY _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_COPY)

/**
 * struct iommu_ioas_unmap - ioctl(IOMMU_IOAS_UNMAP)
 * @size: sizeof(struct iommu_ioas_unmap)
 * @ioas_id: IOAS ID to change the mapping of
 * @iova: IOVA to start the unmapping at
 * @length: Number of bytes to unmap, and return back the bytes unmapped
 *
 * Unmap an IOVA range. The iova/length must be a superset of a previously
 * mapped range used with IOMMU_IOAS_MAP or IOMMU_IOAS_COPY. Splitting or
 * truncating ranges is not allowed. The values 0 to U64_MAX will unmap
 * everything.
 */
struct iommu_ioas_unmap {
	__u32 size;
	__u32 ioas_id;
	__aligned_u64 iova;
	__aligned_u64 length;
};
#define IOMMU_IOAS_UNMAP _IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_UNMAP)

/**
 * enum iommufd_option - ioctl(IOMMU_OPTION_RLIMIT_MODE) and
 *                       ioctl(IOMMU_OPTION_HUGE_PAGES)
 * @IOMMU_OPTION_RLIMIT_MODE:
 *    Change how RLIMIT_MEMLOCK accounting works. The caller must have privilege
 *    to invoke this. Value 0 (default) is user based accounting, 1 uses process
 *    based accounting. Global option, object_id must be 0
 * @IOMMU_OPTION_HUGE_PAGES:
 *    Value 1 (default) allows contiguous pages to be combined when generating
 *    iommu mappings. Value 0 disables combining, everything is mapped to
 *    PAGE_SIZE. This can be useful for benchmarking.  This is a per-IOAS
 *    option, the object_id must be the IOAS ID.
 */
enum iommufd_option {
	IOMMU_OPTION_RLIMIT_MODE = 0,
	IOMMU_OPTION_HUGE_PAGES = 1,
};

/**
 * enum iommufd_option_ops - ioctl(IOMMU_OPTION_OP_SET) and
 *                           ioctl(IOMMU_OPTION_OP_GET)
 * @IOMMU_OPTION_OP_SET: Set the option's value
 * @IOMMU_OPTION_OP_GET: Get the option's value
 */
enum iommufd_option_ops {
	IOMMU_OPTION_OP_SET = 0,
	IOMMU_OPTION_OP_GET = 1,
};

/**
 * struct iommu_option - iommu option multiplexer
 * @size: sizeof(struct iommu_option)
 * @option_id: One of enum iommufd_option
 * @op: One of enum iommufd_option_ops
 * @__reserved: Must be 0
 * @object_id: ID of the object if required
 * @val64: Option value to set or value returned on get
 *
 * Change a simple option value. This multiplexor allows controlling options
 * on objects. IOMMU_OPTION_OP_SET will load an option and IOMMU_OPTION_OP_GET
 * will return the current value.
 */
struct iommu_option {
	__u32 size;
	__u32 option_id;
	__u16 op;
	__u16 __reserved;
	__u32 object_id;
	__aligned_u64 val64;
};
#define IOMMU_OPTION _IO(IOMMUFD_TYPE, IOMMUFD_CMD_OPTION)

/**
 * enum iommufd_vfio_ioas_op - IOMMU_VFIO_IOAS_* ioctls
 * @IOMMU_VFIO_IOAS_GET: Get the current compatibility IOAS
 * @IOMMU_VFIO_IOAS_SET: Change the current compatibility IOAS
 * @IOMMU_VFIO_IOAS_CLEAR: Disable VFIO compatibility
 */
enum iommufd_vfio_ioas_op {
	IOMMU_VFIO_IOAS_GET = 0,
	IOMMU_VFIO_IOAS_SET = 1,
	IOMMU_VFIO_IOAS_CLEAR = 2,
};

/**
 * struct iommu_vfio_ioas - ioctl(IOMMU_VFIO_IOAS)
 * @size: sizeof(struct iommu_vfio_ioas)
 * @ioas_id: For IOMMU_VFIO_IOAS_SET the input IOAS ID to set
 *           For IOMMU_VFIO_IOAS_GET will output the IOAS ID
 * @op: One of enum iommufd_vfio_ioas_op
 * @__reserved: Must be 0
 *
 * The VFIO compatibility support uses a single ioas because VFIO APIs do not
 * support the ID field. Set or Get the IOAS that VFIO compatibility will use.
 * When VFIO_GROUP_SET_CONTAINER is used on an iommufd it will get the
 * compatibility ioas, either by taking what is already set, or auto creating
 * one. From then on VFIO will continue to use that ioas and is not effected by
 * this ioctl. SET or CLEAR does not destroy any auto-created IOAS.
 */
struct iommu_vfio_ioas {
	__u32 size;
	__u32 ioas_id;
	__u16 op;
	__u16 __reserved;
};
#define IOMMU_VFIO_IOAS _IO(IOMMUFD_TYPE, IOMMUFD_CMD_VFIO_IOAS)

/**
 * enum iommufd_hwpt_alloc_flags - Flags for HWPT allocation
 * @IOMMU_HWPT_ALLOC_NEST_PARENT: If set, allocate a HWPT that can serve as
 *                                the parent HWPT in a nesting configuration.
 * @IOMMU_HWPT_ALLOC_DIRTY_TRACKING: Dirty tracking support for device IOMMU is
 *                                   enforced on device attachment
 * @IOMMU_HWPT_FAULT_ID_VALID: The fault_id field of hwpt allocation data is
 *                             valid.
 * @IOMMU_HWPT_ALLOC_PASID: Requests a domain that can be used with PASID. The
 *                          domain can be attached to any PASID on the device.
 *                          Any domain attached to the non-PASID part of the
 *                          device must also be flagged, otherwise attaching a
 *                          PASID will blocked.
 *                          For the user that wants to attach PASID, ioas is
 *                          not recommended for both the non-PASID part
 *                          and PASID part of the device.
 *                          If IOMMU does not support PASID it will return
 *                          error (-EOPNOTSUPP).
 */
enum iommufd_hwpt_alloc_flags {
	IOMMU_HWPT_ALLOC_NEST_PARENT = 1 << 0,
	IOMMU_HWPT_ALLOC_DIRTY_TRACKING = 1 << 1,
	IOMMU_HWPT_FAULT_ID_VALID = 1 << 2,
	IOMMU_HWPT_ALLOC_PASID = 1 << 3,
};

/**
 * enum iommu_hwpt_vtd_s1_flags - Intel VT-d stage-1 page table
 *                                entry attributes
 * @IOMMU_VTD_S1_SRE: Supervisor request
 * @IOMMU_VTD_S1_EAFE: Extended access enable
 * @IOMMU_VTD_S1_WPE: Write protect enable
 */
enum iommu_hwpt_vtd_s1_flags {
	IOMMU_VTD_S1_SRE = 1 << 0,
	IOMMU_VTD_S1_EAFE = 1 << 1,
	IOMMU_VTD_S1_WPE = 1 << 2,
};

/**
 * struct iommu_hwpt_vtd_s1 - Intel VT-d stage-1 page table
 *                            info (IOMMU_HWPT_DATA_VTD_S1)
 * @flags: Combination of enum iommu_hwpt_vtd_s1_flags
 * @pgtbl_addr: The base address of the stage-1 page table.
 * @addr_width: The address width of the stage-1 page table
 * @__reserved: Must be 0
 */
struct iommu_hwpt_vtd_s1 {
	__aligned_u64 flags;
	__aligned_u64 pgtbl_addr;
	__u32 addr_width;
	__u32 __reserved;
};

/**
 * struct iommu_hwpt_arm_smmuv3 - ARM SMMUv3 nested STE
 *                                (IOMMU_HWPT_DATA_ARM_SMMUV3)
 *
 * @ste: The first two double words of the user space Stream Table Entry for
 *       the translation. Must be little-endian.
 *       Allowed fields: (Refer to "5.2 Stream Table Entry" in SMMUv3 HW Spec)
 *       - word-0: V, Cfg, S1Fmt, S1ContextPtr, S1CDMax
 *       - word-1: EATS, S1DSS, S1CIR, S1COR, S1CSH, S1STALLD
 *
 * -EIO will be returned if @ste is not legal or contains any non-allowed field.
 * Cfg can be used to select a S1, Bypass or Abort configuration. A Bypass
 * nested domain will translate the same as the nesting parent. The S1 will
 * install a Context Descriptor Table pointing at userspace memory translated
 * by the nesting parent.
 */
struct iommu_hwpt_arm_smmuv3 {
	__aligned_le64 ste[2];
};

/**
 * enum iommu_hwpt_data_type - IOMMU HWPT Data Type
 * @IOMMU_HWPT_DATA_NONE: no data
 * @IOMMU_HWPT_DATA_VTD_S1: Intel VT-d stage-1 page table
 * @IOMMU_HWPT_DATA_ARM_SMMUV3: ARM SMMUv3 Context Descriptor Table
 */
enum iommu_hwpt_data_type {
	IOMMU_HWPT_DATA_NONE = 0,
	IOMMU_HWPT_DATA_VTD_S1 = 1,
	IOMMU_HWPT_DATA_ARM_SMMUV3 = 2,
};

/**
 * struct iommu_hwpt_alloc - ioctl(IOMMU_HWPT_ALLOC)
 * @size: sizeof(struct iommu_hwpt_alloc)
 * @flags: Combination of enum iommufd_hwpt_alloc_flags
 * @dev_id: The device to allocate this HWPT for
 * @pt_id: The IOAS or HWPT or vIOMMU to connect this HWPT to
 * @out_hwpt_id: The ID of the new HWPT
 * @__reserved: Must be 0
 * @data_type: One of enum iommu_hwpt_data_type
 * @data_len: Length of the type specific data
 * @data_uptr: User pointer to the type specific data
 * @fault_id: The ID of IOMMUFD_FAULT object. Valid only if flags field of
 *            IOMMU_HWPT_FAULT_ID_VALID is set.
 * @__reserved2: Padding to 64-bit alignment. Must be 0.
 *
 * Explicitly allocate a hardware page table object. This is the same object
 * type that is returned by iommufd_device_attach() and represents the
 * underlying iommu driver's iommu_domain kernel object.
 *
 * A kernel-managed HWPT will be created with the mappings from the given
 * IOAS via the @pt_id. The @data_type for this allocation must be set to
 * IOMMU_HWPT_DATA_NONE. The HWPT can be allocated as a parent HWPT for a
 * nesting configuration by passing IOMMU_HWPT_ALLOC_NEST_PARENT via @flags.
 *
 * A user-managed nested HWPT will be created from a given vIOMMU (wrapping a
 * parent HWPT) or a parent HWPT via @pt_id, in which the parent HWPT must be
 * allocated previously via the same ioctl from a given IOAS (@pt_id). In this
 * case, the @data_type must be set to a pre-defined type corresponding to an
 * I/O page table type supported by the underlying IOMMU hardware. The device
 * via @dev_id and the vIOMMU via @pt_id must be associated to the same IOMMU
 * instance.
 *
 * If the @data_type is set to IOMMU_HWPT_DATA_NONE, @data_len and
 * @data_uptr should be zero. Otherwise, both @data_len and @data_uptr
 * must be given.
 */
struct iommu_hwpt_alloc {
	__u32 size;
	__u32 flags;
	__u32 dev_id;
	__u32 pt_id;
	__u32 out_hwpt_id;
	__u32 __reserved;
	__u32 data_type;
	__u32 data_len;
	__aligned_u64 data_uptr;
	__u32 fault_id;
	__u32 __reserved2;
};
#define IOMMU_HWPT_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_HWPT_ALLOC)

/**
 * enum iommu_hw_info_vtd_flags - Flags for VT-d hw_info
 * @IOMMU_HW_INFO_VTD_ERRATA_772415_SPR17: If set, disallow read-only mappings
 *                                         on a nested_parent domain.
 *                                         https://www.intel.com/content/www/us/en/content-details/772415/content-details.html
 */
enum iommu_hw_info_vtd_flags {
	IOMMU_HW_INFO_VTD_ERRATA_772415_SPR17 = 1 << 0,
};

/**
 * struct iommu_hw_info_vtd - Intel VT-d hardware information
 *
 * @flags: Combination of enum iommu_hw_info_vtd_flags
 * @__reserved: Must be 0
 *
 * @cap_reg: Value of Intel VT-d capability register defined in VT-d spec
 *           section 11.4.2 Capability Register.
 * @ecap_reg: Value of Intel VT-d capability register defined in VT-d spec
 *            section 11.4.3 Extended Capability Register.
 *
 * User needs to understand the Intel VT-d specification to decode the
 * register value.
 */
struct iommu_hw_info_vtd {
	__u32 flags;
	__u32 __reserved;
	__aligned_u64 cap_reg;
	__aligned_u64 ecap_reg;
};

/**
 * struct iommu_hw_info_arm_smmuv3 - ARM SMMUv3 hardware information
 *                                   (IOMMU_HW_INFO_TYPE_ARM_SMMUV3)
 *
 * @flags: Must be set to 0
 * @__reserved: Must be 0
 * @idr: Implemented features for ARM SMMU Non-secure programming interface
 * @iidr: Information about the implementation and implementer of ARM SMMU,
 *        and architecture version supported
 * @aidr: ARM SMMU architecture version
 *
 * For the details of @idr, @iidr and @aidr, please refer to the chapters
 * from 6.3.1 to 6.3.6 in the SMMUv3 Spec.
 *
 * This reports the raw HW capability, and not all bits are meaningful to be
 * read by userspace. Only the following fields should be used:
 *
 * idr[0]: ST_LEVEL, TERM_MODEL, STALL_MODEL, TTENDIAN , CD2L, ASID16, TTF
 * idr[1]: SIDSIZE, SSIDSIZE
 * idr[3]: BBML, RIL
 * idr[5]: VAX, GRAN64K, GRAN16K, GRAN4K
 *
 * - S1P should be assumed to be true if a NESTED HWPT can be created
 * - VFIO/iommufd only support platforms with COHACC, it should be assumed to be
 *   true.
 * - ATS is a per-device property. If the VMM describes any devices as ATS
 *   capable in ACPI/DT it should set the corresponding idr.
 *
 * This list may expand in future (eg E0PD, AIE, PBHA, D128, DS etc). It is
 * important that VMMs do not read bits outside the list to allow for
 * compatibility with future kernels. Several features in the SMMUv3
 * architecture are not currently supported by the kernel for nesting: HTTU,
 * BTM, MPAM and others.
 */
struct iommu_hw_info_arm_smmuv3 {
	__u32 flags;
	__u32 __reserved;
	__u32 idr[6];
	__u32 iidr;
	__u32 aidr;
};

/**
 * struct iommu_hw_info_tegra241_cmdqv - NVIDIA Tegra241 CMDQV Hardware
 *         Information (IOMMU_HW_INFO_TYPE_TEGRA241_CMDQV)
 *
 * @flags: Must be 0
 * @version: Version number for the CMDQ-V HW for PARAM bits[03:00]
 * @log2vcmdqs: Log2 of the total number of VCMDQs for PARAM bits[07:04]
 * @log2vsids: Log2 of the total number of SID replacements for PARAM bits[15:12]
 * @__reserved: Must be 0
 *
 * VMM can use these fields directly in its emulated global PARAM register. Note
 * that only one Virtual Interface (VINTF) should be exposed to a VM, i.e. PARAM
 * bits[11:08] should be set to 0 for log2 of the total number of VINTFs.
 */
struct iommu_hw_info_tegra241_cmdqv {
	__u32 flags;
	__u8 version;
	__u8 log2vcmdqs;
	__u8 log2vsids;
	__u8 __reserved;
};

/**
 * enum iommu_hw_info_type - IOMMU Hardware Info Types
 * @IOMMU_HW_INFO_TYPE_NONE: Output by the drivers that do not report hardware
 *                           info
 * @IOMMU_HW_INFO_TYPE_DEFAULT: Input to request for a default type
 * @IOMMU_HW_INFO_TYPE_INTEL_VTD: Intel VT-d iommu info type
 * @IOMMU_HW_INFO_TYPE_ARM_SMMUV3: ARM SMMUv3 iommu info type
 * @IOMMU_HW_INFO_TYPE_TEGRA241_CMDQV: NVIDIA Tegra241 CMDQV (extension for ARM
 *                                     SMMUv3) info type
 */
enum iommu_hw_info_type {
	IOMMU_HW_INFO_TYPE_NONE = 0,
	IOMMU_HW_INFO_TYPE_DEFAULT = 0,
	IOMMU_HW_INFO_TYPE_INTEL_VTD = 1,
	IOMMU_HW_INFO_TYPE_ARM_SMMUV3 = 2,
	IOMMU_HW_INFO_TYPE_TEGRA241_CMDQV = 3,
};

/**
 * enum iommufd_hw_capabilities
 * @IOMMU_HW_CAP_DIRTY_TRACKING: IOMMU hardware support for dirty tracking
 *                               If available, it means the following APIs
 *                               are supported:
 *
 *                                   IOMMU_HWPT_GET_DIRTY_BITMAP
 *                                   IOMMU_HWPT_SET_DIRTY_TRACKING
 *
 * @IOMMU_HW_CAP_PCI_PASID_EXEC: Execute Permission Supported, user ignores it
 *                               when the struct
 *                               iommu_hw_info::out_max_pasid_log2 is zero.
 * @IOMMU_HW_CAP_PCI_PASID_PRIV: Privileged Mode Supported, user ignores it
 *                               when the struct
 *                               iommu_hw_info::out_max_pasid_log2 is zero.
 */
enum iommufd_hw_capabilities {
	IOMMU_HW_CAP_DIRTY_TRACKING = 1 << 0,
	IOMMU_HW_CAP_PCI_PASID_EXEC = 1 << 1,
	IOMMU_HW_CAP_PCI_PASID_PRIV = 1 << 2,
};

/**
 * enum iommufd_hw_info_flags - Flags for iommu_hw_info
 * @IOMMU_HW_INFO_FLAG_INPUT_TYPE: If set, @in_data_type carries an input type
 *                                 for user space to request for a specific info
 */
enum iommufd_hw_info_flags {
	IOMMU_HW_INFO_FLAG_INPUT_TYPE = 1 << 0,
};

/**
 * struct iommu_hw_info - ioctl(IOMMU_GET_HW_INFO)
 * @size: sizeof(struct iommu_hw_info)
 * @flags: Must be 0
 * @dev_id: The device bound to the iommufd
 * @data_len: Input the length of a user buffer in bytes. Output the length of
 *            data that kernel supports
 * @data_uptr: User pointer to a user-space buffer used by the kernel to fill
 *             the iommu type specific hardware information data
 * @in_data_type: This shares the same field with @out_data_type, making it be
 *                a bidirectional field. When IOMMU_HW_INFO_FLAG_INPUT_TYPE is
 *                set, an input type carried via this @in_data_type field will
 *                be valid, requesting for the info data to the given type. If
 *                IOMMU_HW_INFO_FLAG_INPUT_TYPE is unset, any input value will
 *                be seen as IOMMU_HW_INFO_TYPE_DEFAULT
 * @out_data_type: Output the iommu hardware info type as defined in the enum
 *                 iommu_hw_info_type.
 * @out_capabilities: Output the generic iommu capability info type as defined
 *                    in the enum iommu_hw_capabilities.
 * @out_max_pasid_log2: Output the width of PASIDs. 0 means no PASID support.
 *                      PCI devices turn to out_capabilities to check if the
 *                      specific capabilities is supported or not.
 * @__reserved: Must be 0
 *
 * Query an iommu type specific hardware information data from an iommu behind
 * a given device that has been bound to iommufd. This hardware info data will
 * be used to sync capabilities between the virtual iommu and the physical
 * iommu, e.g. a nested translation setup needs to check the hardware info, so
 * a guest stage-1 page table can be compatible with the physical iommu.
 *
 * To capture an iommu type specific hardware information data, @data_uptr and
 * its length @data_len must be provided. Trailing bytes will be zeroed if the
 * user buffer is larger than the data that kernel has. Otherwise, kernel only
 * fills the buffer using the given length in @data_len. If the ioctl succeeds,
 * @data_len will be updated to the length that kernel actually supports,
 * @out_data_type will be filled to decode the data filled in the buffer
 * pointed by @data_uptr. Input @data_len == zero is allowed.
 */
struct iommu_hw_info {
	__u32 size;
	__u32 flags;
	__u32 dev_id;
	__u32 data_len;
	__aligned_u64 data_uptr;
	union {
		__u32 in_data_type;
		__u32 out_data_type;
	};
	__u8 out_max_pasid_log2;
	__u8 __reserved[3];
	__aligned_u64 out_capabilities;
};
#define IOMMU_GET_HW_INFO _IO(IOMMUFD_TYPE, IOMMUFD_CMD_GET_HW_INFO)

/*
 * enum iommufd_hwpt_set_dirty_tracking_flags - Flags for steering dirty
 *                                              tracking
 * @IOMMU_HWPT_DIRTY_TRACKING_ENABLE: Enable dirty tracking
 */
enum iommufd_hwpt_set_dirty_tracking_flags {
	IOMMU_HWPT_DIRTY_TRACKING_ENABLE = 1,
};

/**
 * struct iommu_hwpt_set_dirty_tracking - ioctl(IOMMU_HWPT_SET_DIRTY_TRACKING)
 * @size: sizeof(struct iommu_hwpt_set_dirty_tracking)
 * @flags: Combination of enum iommufd_hwpt_set_dirty_tracking_flags
 * @hwpt_id: HW pagetable ID that represents the IOMMU domain
 * @__reserved: Must be 0
 *
 * Toggle dirty tracking on an HW pagetable.
 */
struct iommu_hwpt_set_dirty_tracking {
	__u32 size;
	__u32 flags;
	__u32 hwpt_id;
	__u32 __reserved;
};
#define IOMMU_HWPT_SET_DIRTY_TRACKING _IO(IOMMUFD_TYPE, \
					  IOMMUFD_CMD_HWPT_SET_DIRTY_TRACKING)

/**
 * enum iommufd_hwpt_get_dirty_bitmap_flags - Flags for getting dirty bits
 * @IOMMU_HWPT_GET_DIRTY_BITMAP_NO_CLEAR: Just read the PTEs without clearing
 *                                        any dirty bits metadata. This flag
 *                                        can be passed in the expectation
 *                                        where the next operation is an unmap
 *                                        of the same IOVA range.
 *
 */
enum iommufd_hwpt_get_dirty_bitmap_flags {
	IOMMU_HWPT_GET_DIRTY_BITMAP_NO_CLEAR = 1,
};

/**
 * struct iommu_hwpt_get_dirty_bitmap - ioctl(IOMMU_HWPT_GET_DIRTY_BITMAP)
 * @size: sizeof(struct iommu_hwpt_get_dirty_bitmap)
 * @hwpt_id: HW pagetable ID that represents the IOMMU domain
 * @flags: Combination of enum iommufd_hwpt_get_dirty_bitmap_flags
 * @__reserved: Must be 0
 * @iova: base IOVA of the bitmap first bit
 * @length: IOVA range size
 * @page_size: page size granularity of each bit in the bitmap
 * @data: bitmap where to set the dirty bits. The bitmap bits each
 *        represent a page_size which you deviate from an arbitrary iova.
 *
 * Checking a given IOVA is dirty:
 *
 *  data[(iova / page_size) / 64] & (1ULL << ((iova / page_size) % 64))
 *
 * Walk the IOMMU pagetables for a given IOVA range to return a bitmap
 * with the dirty IOVAs. In doing so it will also by default clear any
 * dirty bit metadata set in the IOPTE.
 */
struct iommu_hwpt_get_dirty_bitmap {
	__u32 size;
	__u32 hwpt_id;
	__u32 flags;
	__u32 __reserved;
	__aligned_u64 iova;
	__aligned_u64 length;
	__aligned_u64 page_size;
	__aligned_u64 data;
};
#define IOMMU_HWPT_GET_DIRTY_BITMAP _IO(IOMMUFD_TYPE, \
					IOMMUFD_CMD_HWPT_GET_DIRTY_BITMAP)

/**
 * enum iommu_hwpt_invalidate_data_type - IOMMU HWPT Cache Invalidation
 *                                        Data Type
 * @IOMMU_HWPT_INVALIDATE_DATA_VTD_S1: Invalidation data for VTD_S1
 * @IOMMU_VIOMMU_INVALIDATE_DATA_ARM_SMMUV3: Invalidation data for ARM SMMUv3
 */
enum iommu_hwpt_invalidate_data_type {
	IOMMU_HWPT_INVALIDATE_DATA_VTD_S1 = 0,
	IOMMU_VIOMMU_INVALIDATE_DATA_ARM_SMMUV3 = 1,
};

/**
 * enum iommu_hwpt_vtd_s1_invalidate_flags - Flags for Intel VT-d
 *                                           stage-1 cache invalidation
 * @IOMMU_VTD_INV_FLAGS_LEAF: Indicates whether the invalidation applies
 *                            to all-levels page structure cache or just
 *                            the leaf PTE cache.
 */
enum iommu_hwpt_vtd_s1_invalidate_flags {
	IOMMU_VTD_INV_FLAGS_LEAF = 1 << 0,
};

/**
 * struct iommu_hwpt_vtd_s1_invalidate - Intel VT-d cache invalidation
 *                                       (IOMMU_HWPT_INVALIDATE_DATA_VTD_S1)
 * @addr: The start address of the range to be invalidated. It needs to
 *        be 4KB aligned.
 * @npages: Number of contiguous 4K pages to be invalidated.
 * @flags: Combination of enum iommu_hwpt_vtd_s1_invalidate_flags
 * @__reserved: Must be 0
 *
 * The Intel VT-d specific invalidation data for user-managed stage-1 cache
 * invalidation in nested translation. Userspace uses this structure to
 * tell the impacted cache scope after modifying the stage-1 page table.
 *
 * Invalidating all the caches related to the page table by setting @addr
 * to be 0 and @npages to be U64_MAX.
 *
 * The device TLB will be invalidated automatically if ATS is enabled.
 */
struct iommu_hwpt_vtd_s1_invalidate {
	__aligned_u64 addr;
	__aligned_u64 npages;
	__u32 flags;
	__u32 __reserved;
};

/**
 * struct iommu_viommu_arm_smmuv3_invalidate - ARM SMMUv3 cache invalidation
 *         (IOMMU_VIOMMU_INVALIDATE_DATA_ARM_SMMUV3)
 * @cmd: 128-bit cache invalidation command that runs in SMMU CMDQ.
 *       Must be little-endian.
 *
 * Supported command list only when passing in a vIOMMU via @hwpt_id:
 *     CMDQ_OP_TLBI_NSNH_ALL
 *     CMDQ_OP_TLBI_NH_VA
 *     CMDQ_OP_TLBI_NH_VAA
 *     CMDQ_OP_TLBI_NH_ALL
 *     CMDQ_OP_TLBI_NH_ASID
 *     CMDQ_OP_ATC_INV
 *     CMDQ_OP_CFGI_CD
 *     CMDQ_OP_CFGI_CD_ALL
 *
 * -EIO will be returned if the command is not supported.
 */
struct iommu_viommu_arm_smmuv3_invalidate {
	__aligned_le64 cmd[2];
};

/**
 * struct iommu_hwpt_invalidate - ioctl(IOMMU_HWPT_INVALIDATE)
 * @size: sizeof(struct iommu_hwpt_invalidate)
 * @hwpt_id: ID of a nested HWPT or a vIOMMU, for cache invalidation
 * @data_uptr: User pointer to an array of driver-specific cache invalidation
 *             data.
 * @data_type: One of enum iommu_hwpt_invalidate_data_type, defining the data
 *             type of all the entries in the invalidation request array. It
 *             should be a type supported by the hwpt pointed by @hwpt_id.
 * @entry_len: Length (in bytes) of a request entry in the request array
 * @entry_num: Input the number of cache invalidation requests in the array.
 *             Output the number of requests successfully handled by kernel.
 * @__reserved: Must be 0.
 *
 * Invalidate iommu cache for user-managed page table or vIOMMU. Modifications
 * on a user-managed page table should be followed by this operation, if a HWPT
 * is passed in via @hwpt_id. Other caches, such as device cache or descriptor
 * cache can be flushed if a vIOMMU is passed in via the @hwpt_id field.
 *
 * Each ioctl can support one or more cache invalidation requests in the array
 * that has a total size of @entry_len * @entry_num.
 *
 * An empty invalidation request array by setting @entry_num==0 is allowed, and
 * @entry_len and @data_uptr would be ignored in this case. This can be used to
 * check if the given @data_type is supported or not by kernel.
 */
struct iommu_hwpt_invalidate {
	__u32 size;
	__u32 hwpt_id;
	__aligned_u64 data_uptr;
	__u32 data_type;
	__u32 entry_len;
	__u32 entry_num;
	__u32 __reserved;
};
#define IOMMU_HWPT_INVALIDATE _IO(IOMMUFD_TYPE, IOMMUFD_CMD_HWPT_INVALIDATE)

/**
 * enum iommu_hwpt_pgfault_flags - flags for struct iommu_hwpt_pgfault
 * @IOMMU_PGFAULT_FLAGS_PASID_VALID: The pasid field of the fault data is
 *                                   valid.
 * @IOMMU_PGFAULT_FLAGS_LAST_PAGE: It's the last fault of a fault group.
 */
enum iommu_hwpt_pgfault_flags {
	IOMMU_PGFAULT_FLAGS_PASID_VALID		= (1 << 0),
	IOMMU_PGFAULT_FLAGS_LAST_PAGE		= (1 << 1),
};

/**
 * enum iommu_hwpt_pgfault_perm - perm bits for struct iommu_hwpt_pgfault
 * @IOMMU_PGFAULT_PERM_READ: request for read permission
 * @IOMMU_PGFAULT_PERM_WRITE: request for write permission
 * @IOMMU_PGFAULT_PERM_EXEC: (PCIE 10.4.1) request with a PASID that has the
 *                           Execute Requested bit set in PASID TLP Prefix.
 * @IOMMU_PGFAULT_PERM_PRIV: (PCIE 10.4.1) request with a PASID that has the
 *                           Privileged Mode Requested bit set in PASID TLP
 *                           Prefix.
 */
enum iommu_hwpt_pgfault_perm {
	IOMMU_PGFAULT_PERM_READ			= (1 << 0),
	IOMMU_PGFAULT_PERM_WRITE		= (1 << 1),
	IOMMU_PGFAULT_PERM_EXEC			= (1 << 2),
	IOMMU_PGFAULT_PERM_PRIV			= (1 << 3),
};

/**
 * struct iommu_hwpt_pgfault - iommu page fault data
 * @flags: Combination of enum iommu_hwpt_pgfault_flags
 * @dev_id: id of the originated device
 * @pasid: Process Address Space ID
 * @grpid: Page Request Group Index
 * @perm: Combination of enum iommu_hwpt_pgfault_perm
 * @__reserved: Must be 0.
 * @addr: Fault address
 * @length: a hint of how much data the requestor is expecting to fetch. For
 *          example, if the PRI initiator knows it is going to do a 10MB
 *          transfer, it could fill in 10MB and the OS could pre-fault in
 *          10MB of IOVA. It's default to 0 if there's no such hint.
 * @cookie: kernel-managed cookie identifying a group of fault messages. The
 *          cookie number encoded in the last page fault of the group should
 *          be echoed back in the response message.
 */
struct iommu_hwpt_pgfault {
	__u32 flags;
	__u32 dev_id;
	__u32 pasid;
	__u32 grpid;
	__u32 perm;
	__u32 __reserved;
	__aligned_u64 addr;
	__u32 length;
	__u32 cookie;
};

/**
 * enum iommufd_page_response_code - Return status of fault handlers
 * @IOMMUFD_PAGE_RESP_SUCCESS: Fault has been handled and the page tables
 *                             populated, retry the access. This is the
 *                             "Success" defined in PCI 10.4.2.1.
 * @IOMMUFD_PAGE_RESP_INVALID: Could not handle this fault, don't retry the
 *                             access. This is the "Invalid Request" in PCI
 *                             10.4.2.1.
 */
enum iommufd_page_response_code {
	IOMMUFD_PAGE_RESP_SUCCESS = 0,
	IOMMUFD_PAGE_RESP_INVALID = 1,
};

/**
 * struct iommu_hwpt_page_response - IOMMU page fault response
 * @cookie: The kernel-managed cookie reported in the fault message.
 * @code: One of response code in enum iommufd_page_response_code.
 */
struct iommu_hwpt_page_response {
	__u32 cookie;
	__u32 code;
};

/**
 * struct iommu_fault_alloc - ioctl(IOMMU_FAULT_QUEUE_ALLOC)
 * @size: sizeof(struct iommu_fault_alloc)
 * @flags: Must be 0
 * @out_fault_id: The ID of the new FAULT
 * @out_fault_fd: The fd of the new FAULT
 *
 * Explicitly allocate a fault handling object.
 */
struct iommu_fault_alloc {
	__u32 size;
	__u32 flags;
	__u32 out_fault_id;
	__u32 out_fault_fd;
};
#define IOMMU_FAULT_QUEUE_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_FAULT_QUEUE_ALLOC)

/**
 * enum iommu_viommu_type - Virtual IOMMU Type
 * @IOMMU_VIOMMU_TYPE_DEFAULT: Reserved for future use
 * @IOMMU_VIOMMU_TYPE_ARM_SMMUV3: ARM SMMUv3 driver specific type
 * @IOMMU_VIOMMU_TYPE_TEGRA241_CMDQV: NVIDIA Tegra241 CMDQV (extension for ARM
 *                                    SMMUv3) enabled ARM SMMUv3 type
 */
enum iommu_viommu_type {
	IOMMU_VIOMMU_TYPE_DEFAULT = 0,
	IOMMU_VIOMMU_TYPE_ARM_SMMUV3 = 1,
	IOMMU_VIOMMU_TYPE_TEGRA241_CMDQV = 2,
};

/**
 * struct iommu_viommu_tegra241_cmdqv - NVIDIA Tegra241 CMDQV Virtual Interface
 *                                      (IOMMU_VIOMMU_TYPE_TEGRA241_CMDQV)
 * @out_vintf_mmap_offset: mmap offset argument for VINTF's page0
 * @out_vintf_mmap_length: mmap length argument for VINTF's page0
 *
 * Both @out_vintf_mmap_offset and @out_vintf_mmap_length are reported by kernel
 * for user space to mmap the VINTF page0 from the host physical address space
 * to the guest physical address space so that a guest kernel can directly R/W
 * access to the VINTF page0 in order to control its virtual command queues.
 */
struct iommu_viommu_tegra241_cmdqv {
	__aligned_u64 out_vintf_mmap_offset;
	__aligned_u64 out_vintf_mmap_length;
};

/**
 * struct iommu_viommu_alloc - ioctl(IOMMU_VIOMMU_ALLOC)
 * @size: sizeof(struct iommu_viommu_alloc)
 * @flags: Must be 0
 * @type: Type of the virtual IOMMU. Must be defined in enum iommu_viommu_type
 * @dev_id: The device's physical IOMMU will be used to back the virtual IOMMU
 * @hwpt_id: ID of a nesting parent HWPT to associate to
 * @out_viommu_id: Output virtual IOMMU ID for the allocated object
 * @data_len: Length of the type specific data
 * @__reserved: Must be 0
 * @data_uptr: User pointer to a driver-specific virtual IOMMU data
 *
 * Allocate a virtual IOMMU object, representing the underlying physical IOMMU's
 * virtualization support that is a security-isolated slice of the real IOMMU HW
 * that is unique to a specific VM. Operations global to the IOMMU are connected
 * to the vIOMMU, such as:
 * - Security namespace for guest owned ID, e.g. guest-controlled cache tags
 * - Non-device-affiliated event reporting, e.g. invalidation queue errors
 * - Access to a sharable nesting parent pagetable across physical IOMMUs
 * - Virtualization of various platforms IDs, e.g. RIDs and others
 * - Delivery of paravirtualized invalidation
 * - Direct assigned invalidation queues
 * - Direct assigned interrupts
 */
struct iommu_viommu_alloc {
	__u32 size;
	__u32 flags;
	__u32 type;
	__u32 dev_id;
	__u32 hwpt_id;
	__u32 out_viommu_id;
	__u32 data_len;
	__u32 __reserved;
	__aligned_u64 data_uptr;
};
#define IOMMU_VIOMMU_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_VIOMMU_ALLOC)

/**
 * struct iommu_vdevice_alloc - ioctl(IOMMU_VDEVICE_ALLOC)
 * @size: sizeof(struct iommu_vdevice_alloc)
 * @viommu_id: vIOMMU ID to associate with the virtual device
 * @dev_id: The physical device to allocate a virtual instance on the vIOMMU
 * @out_vdevice_id: Object handle for the vDevice. Pass to IOMMU_DESTORY
 * @virt_id: Virtual device ID per vIOMMU, e.g. vSID of ARM SMMUv3, vDeviceID
 *           of AMD IOMMU, and vRID of Intel VT-d
 *
 * Allocate a virtual device instance (for a physical device) against a vIOMMU.
 * This instance holds the device's information (related to its vIOMMU) in a VM.
 * User should use IOMMU_DESTROY to destroy the virtual device before
 * destroying the physical device (by closing vfio_cdev fd). Otherwise the
 * virtual device would be forcibly destroyed on physical device destruction,
 * its vdevice_id would be permanently leaked (unremovable & unreusable) until
 * iommu fd closed.
 */
struct iommu_vdevice_alloc {
	__u32 size;
	__u32 viommu_id;
	__u32 dev_id;
	__u32 out_vdevice_id;
	__aligned_u64 virt_id;
};
#define IOMMU_VDEVICE_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_VDEVICE_ALLOC)

/**
 * struct iommu_ioas_change_process - ioctl(VFIO_IOAS_CHANGE_PROCESS)
 * @size: sizeof(struct iommu_ioas_change_process)
 * @__reserved: Must be 0
 *
 * This transfers pinned memory counts for every memory map in every IOAS
 * in the context to the current process.  This only supports maps created
 * with IOMMU_IOAS_MAP_FILE, and returns EINVAL if other maps are present.
 * If the ioctl returns a failure status, then nothing is changed.
 *
 * This API is useful for transferring operation of a device from one process
 * to another, such as during userland live update.
 */
struct iommu_ioas_change_process {
	__u32 size;
	__u32 __reserved;
};

#define IOMMU_IOAS_CHANGE_PROCESS \
	_IO(IOMMUFD_TYPE, IOMMUFD_CMD_IOAS_CHANGE_PROCESS)

/**
 * enum iommu_veventq_flag - flag for struct iommufd_vevent_header
 * @IOMMU_VEVENTQ_FLAG_LOST_EVENTS: vEVENTQ has lost vEVENTs
 */
enum iommu_veventq_flag {
	IOMMU_VEVENTQ_FLAG_LOST_EVENTS = (1U << 0),
};

/**
 * struct iommufd_vevent_header - Virtual Event Header for a vEVENTQ Status
 * @flags: Combination of enum iommu_veventq_flag
 * @sequence: The sequence index of a vEVENT in the vEVENTQ, with a range of
 *            [0, INT_MAX] where the following index of INT_MAX is 0
 *
 * Each iommufd_vevent_header reports a sequence index of the following vEVENT:
 *
 * +----------------------+-------+----------------------+-------+---+-------+
 * | header0 {sequence=0} | data0 | header1 {sequence=1} | data1 |...| dataN |
 * +----------------------+-------+----------------------+-------+---+-------+
 *
 * And this sequence index is expected to be monotonic to the sequence index of
 * the previous vEVENT. If two adjacent sequence indexes has a delta larger than
 * 1, it means that delta - 1 number of vEVENTs has lost, e.g. two lost vEVENTs:
 *
 * +-----+----------------------+-------+----------------------+-------+-----+
 * | ... | header3 {sequence=3} | data3 | header6 {sequence=6} | data6 | ... |
 * +-----+----------------------+-------+----------------------+-------+-----+
 *
 * If a vEVENT lost at the tail of the vEVENTQ and there is no following vEVENT
 * providing the next sequence index, an IOMMU_VEVENTQ_FLAG_LOST_EVENTS header
 * would be added to the tail, and no data would follow this header:
 *
 * +--+----------------------+-------+-----------------------------------------+
 * |..| header3 {sequence=3} | data3 | header4 {flags=LOST_EVENTS, sequence=4} |
 * +--+----------------------+-------+-----------------------------------------+
 */
struct iommufd_vevent_header {
	__u32 flags;
	__u32 sequence;
};

/**
 * enum iommu_veventq_type - Virtual Event Queue Type
 * @IOMMU_VEVENTQ_TYPE_DEFAULT: Reserved for future use
 * @IOMMU_VEVENTQ_TYPE_ARM_SMMUV3: ARM SMMUv3 Virtual Event Queue
 * @IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV: NVIDIA Tegra241 CMDQV Extension IRQ
 */
enum iommu_veventq_type {
	IOMMU_VEVENTQ_TYPE_DEFAULT = 0,
	IOMMU_VEVENTQ_TYPE_ARM_SMMUV3 = 1,
	IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV = 2,
};

/**
 * struct iommu_vevent_arm_smmuv3 - ARM SMMUv3 Virtual Event
 *                                  (IOMMU_VEVENTQ_TYPE_ARM_SMMUV3)
 * @evt: 256-bit ARM SMMUv3 Event record, little-endian.
 *       Reported event records: (Refer to "7.3 Event records" in SMMUv3 HW Spec)
 *       - 0x04 C_BAD_STE
 *       - 0x06 F_STREAM_DISABLED
 *       - 0x08 C_BAD_SUBSTREAMID
 *       - 0x0a C_BAD_CD
 *       - 0x10 F_TRANSLATION
 *       - 0x11 F_ADDR_SIZE
 *       - 0x12 F_ACCESS
 *       - 0x13 F_PERMISSION
 *
 * StreamID field reports a virtual device ID. To receive a virtual event for a
 * device, a vDEVICE must be allocated via IOMMU_VDEVICE_ALLOC.
 */
struct iommu_vevent_arm_smmuv3 {
	__aligned_le64 evt[4];
};

/**
 * struct iommu_vevent_tegra241_cmdqv - Tegra241 CMDQV IRQ
 *                                      (IOMMU_VEVENTQ_TYPE_TEGRA241_CMDQV)
 * @lvcmdq_err_map: 128-bit logical vcmdq error map, little-endian.
 *                  (Refer to register LVCMDQ_ERR_MAPs per VINTF )
 *
 * The 128-bit register value from HW exclusively reflect the error bits for a
 * Virtual Interface represented by a vIOMMU object. Read and report directly.
 */
struct iommu_vevent_tegra241_cmdqv {
	__aligned_le64 lvcmdq_err_map[2];
};

/**
 * struct iommu_veventq_alloc - ioctl(IOMMU_VEVENTQ_ALLOC)
 * @size: sizeof(struct iommu_veventq_alloc)
 * @flags: Must be 0
 * @viommu_id: virtual IOMMU ID to associate the vEVENTQ with
 * @type: Type of the vEVENTQ. Must be defined in enum iommu_veventq_type
 * @veventq_depth: Maximum number of events in the vEVENTQ
 * @out_veventq_id: The ID of the new vEVENTQ
 * @out_veventq_fd: The fd of the new vEVENTQ. User space must close the
 *                  successfully returned fd after using it
 * @__reserved: Must be 0
 *
 * Explicitly allocate a virtual event queue interface for a vIOMMU. A vIOMMU
 * can have multiple FDs for different types, but is confined to one per @type.
 * User space should open the @out_veventq_fd to read vEVENTs out of a vEVENTQ,
 * if there are vEVENTs available. A vEVENTQ will lose events due to overflow,
 * if the number of the vEVENTs hits @veventq_depth.
 *
 * Each vEVENT in a vEVENTQ encloses a struct iommufd_vevent_header followed by
 * a type-specific data structure, in a normal case:
 *
 * +-+---------+-------+---------+-------+-----+---------+-------+-+
 * | | header0 | data0 | header1 | data1 | ... | headerN | dataN | |
 * +-+---------+-------+---------+-------+-----+---------+-------+-+
 *
 * unless a tailing IOMMU_VEVENTQ_FLAG_LOST_EVENTS header is logged (refer to
 * struct iommufd_vevent_header).
 */
struct iommu_veventq_alloc {
	__u32 size;
	__u32 flags;
	__u32 viommu_id;
	__u32 type;
	__u32 veventq_depth;
	__u32 out_veventq_id;
	__u32 out_veventq_fd;
	__u32 __reserved;
};
#define IOMMU_VEVENTQ_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_VEVENTQ_ALLOC)

/**
 * enum iommu_hw_queue_type - HW Queue Type
 * @IOMMU_HW_QUEUE_TYPE_DEFAULT: Reserved for future use
 * @IOMMU_HW_QUEUE_TYPE_TEGRA241_CMDQV: NVIDIA Tegra241 CMDQV (extension for ARM
 *                                      SMMUv3) Virtual Command Queue (VCMDQ)
 */
enum iommu_hw_queue_type {
	IOMMU_HW_QUEUE_TYPE_DEFAULT = 0,
	/*
	 * TEGRA241_CMDQV requirements (otherwise, allocation will fail)
	 * - alloc starts from the lowest @index=0 in ascending order
	 * - destroy starts from the last allocated @index in descending order
	 * - @base_addr must be aligned to @length in bytes and mapped in IOAS
	 * - @length must be a power of 2, with a minimum 32 bytes and a maximum
	 *   2 ^ idr[1].CMDQS * 16 bytes (use GET_HW_INFO call to read idr[1]
	 *   from struct iommu_hw_info_arm_smmuv3)
	 * - suggest to back the queue memory with contiguous physical pages or
	 *   a single huge page with alignment of the queue size, and limit the
	 *   emulated vSMMU's IDR1.CMDQS to log2(huge page size / 16 bytes)
	 */
	IOMMU_HW_QUEUE_TYPE_TEGRA241_CMDQV = 1,
};

/**
 * struct iommu_hw_queue_alloc - ioctl(IOMMU_HW_QUEUE_ALLOC)
 * @size: sizeof(struct iommu_hw_queue_alloc)
 * @flags: Must be 0
 * @viommu_id: Virtual IOMMU ID to associate the HW queue with
 * @type: One of enum iommu_hw_queue_type
 * @index: The logical index to the HW queue per virtual IOMMU for a multi-queue
 *         model
 * @out_hw_queue_id: The ID of the new HW queue
 * @nesting_parent_iova: Base address of the queue memory in the guest physical
 *                       address space
 * @length: Length of the queue memory
 *
 * Allocate a HW queue object for a vIOMMU-specific HW-accelerated queue, which
 * allows HW to access a guest queue memory described using @nesting_parent_iova
 * and @length.
 *
 * A vIOMMU can allocate multiple queues, but it must use a different @index per
 * type to separate each allocation, e.g::
 *
 *     Type1 HW queue0, Type1 HW queue1, Type2 HW queue0, ...
 */
struct iommu_hw_queue_alloc {
	__u32 size;
	__u32 flags;
	__u32 viommu_id;
	__u32 type;
	__u32 index;
	__u32 out_hw_queue_id;
	__aligned_u64 nesting_parent_iova;
	__aligned_u64 length;
};
#define IOMMU_HW_QUEUE_ALLOC _IO(IOMMUFD_TYPE, IOMMUFD_CMD_HW_QUEUE_ALLOC)
#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