PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Userspace interface for /dev/acrn_hsm - ACRN Hypervisor Service Module * * This file can be used by applications that need to communicate with the HSM * via the ioctl interface. * * Copyright (C) 2021 Intel Corporation. All rights reserved. */ #ifndef _ACRN_H #define _ACRN_H #include <linux/types.h> #define ACRN_IO_REQUEST_MAX 16 #define ACRN_IOREQ_STATE_PENDING 0 #define ACRN_IOREQ_STATE_COMPLETE 1 #define ACRN_IOREQ_STATE_PROCESSING 2 #define ACRN_IOREQ_STATE_FREE 3 #define ACRN_IOREQ_TYPE_PORTIO 0 #define ACRN_IOREQ_TYPE_MMIO 1 #define ACRN_IOREQ_TYPE_PCICFG 2 #define ACRN_IOREQ_DIR_READ 0 #define ACRN_IOREQ_DIR_WRITE 1 /** * struct acrn_mmio_request - Info of a MMIO I/O request * @direction: Access direction of this request (ACRN_IOREQ_DIR_*) * @reserved: Reserved for alignment and should be 0 * @address: Access address of this MMIO I/O request * @size: Access size of this MMIO I/O request * @value: Read/write value of this MMIO I/O request */ struct acrn_mmio_request { __u32 direction; __u32 reserved; __u64 address; __u64 size; __u64 value; }; /** * struct acrn_pio_request - Info of a PIO I/O request * @direction: Access direction of this request (ACRN_IOREQ_DIR_*) * @reserved: Reserved for alignment and should be 0 * @address: Access address of this PIO I/O request * @size: Access size of this PIO I/O request * @value: Read/write value of this PIO I/O request */ struct acrn_pio_request { __u32 direction; __u32 reserved; __u64 address; __u64 size; __u32 value; }; /** * struct acrn_pci_request - Info of a PCI I/O request * @direction: Access direction of this request (ACRN_IOREQ_DIR_*) * @reserved: Reserved for alignment and should be 0 * @size: Access size of this PCI I/O request * @value: Read/write value of this PIO I/O request * @bus: PCI bus value of this PCI I/O request * @dev: PCI device value of this PCI I/O request * @func: PCI function value of this PCI I/O request * @reg: PCI config space offset of this PCI I/O request * * Need keep same header layout with &struct acrn_pio_request. */ struct acrn_pci_request { __u32 direction; __u32 reserved[3]; __u64 size; __u32 value; __u32 bus; __u32 dev; __u32 func; __u32 reg; }; /** * struct acrn_io_request - 256-byte ACRN I/O request * @type: Type of this request (ACRN_IOREQ_TYPE_*). * @completion_polling: Polling flag. Hypervisor will poll completion of the * I/O request if this flag set. * @reserved0: Reserved fields. * @reqs: Union of different types of request. Byte offset: 64. * @reqs.pio_request: PIO request data of the I/O request. * @reqs.pci_request: PCI configuration space request data of the I/O request. * @reqs.mmio_request: MMIO request data of the I/O request. * @reqs.data: Raw data of the I/O request. * @reserved1: Reserved fields. * @kernel_handled: Flag indicates this request need be handled in kernel. * @processed: The status of this request (ACRN_IOREQ_STATE_*). * * The state transitions of ACRN I/O request: * * FREE -> PENDING -> PROCESSING -> COMPLETE -> FREE -> ... * * An I/O request in COMPLETE or FREE state is owned by the hypervisor. HSM and * ACRN userspace are in charge of processing the others. * * On basis of the states illustrated above, a typical lifecycle of ACRN IO * request would look like: * * Flow (assume the initial state is FREE) * | * | Service VM vCPU 0 Service VM vCPU x User vCPU y * | * | hypervisor: * | fills in type, addr, etc. * | pauses the User VM vCPU y * | sets the state to PENDING (a) * | fires an upcall to Service VM * | * | HSM: * | scans for PENDING requests * | sets the states to PROCESSING (b) * | assigns the requests to clients (c) * V * | client: * | scans for the assigned requests * | handles the requests (d) * | HSM: * | sets states to COMPLETE * | notifies the hypervisor * | * | hypervisor: * | resumes User VM vCPU y (e) * | * | hypervisor: * | post handling (f) * V sets states to FREE * * Note that the procedures (a) to (f) in the illustration above require to be * strictly processed in the order. One vCPU cannot trigger another request of * I/O emulation before completing the previous one. * * Atomic and barriers are required when HSM and hypervisor accessing the state * of &struct acrn_io_request. * */ struct acrn_io_request { __u32 type; __u32 completion_polling; __u32 reserved0[14]; union { struct acrn_pio_request pio_request; struct acrn_pci_request pci_request; struct acrn_mmio_request mmio_request; __u64 data[8]; } reqs; __u32 reserved1; __u32 kernel_handled; __u32 processed; } __attribute__((aligned(256))); struct acrn_io_request_buffer { union { struct acrn_io_request req_slot[ACRN_IO_REQUEST_MAX]; __u8 reserved[4096]; }; }; /** * struct acrn_ioreq_notify - The structure of ioreq completion notification * @vmid: User VM ID * @reserved: Reserved and should be 0 * @vcpu: vCPU ID */ struct acrn_ioreq_notify { __u16 vmid; __u16 reserved; __u32 vcpu; }; /** * struct acrn_vm_creation - Info to create a User VM * @vmid: User VM ID returned from the hypervisor * @reserved0: Reserved and must be 0 * @vcpu_num: Number of vCPU in the VM. Return from hypervisor. * @reserved1: Reserved and must be 0 * @uuid: Empty space never to be used again (used to be UUID of the VM) * @vm_flag: Flag of the VM creating. Pass to hypervisor directly. * @ioreq_buf: Service VM GPA of I/O request buffer. Pass to * hypervisor directly. * @cpu_affinity: CPU affinity of the VM. Pass to hypervisor directly. * It's a bitmap which indicates CPUs used by the VM. */ struct acrn_vm_creation { __u16 vmid; __u16 reserved0; __u16 vcpu_num; __u16 reserved1; __u8 uuid[16]; __u64 vm_flag; __u64 ioreq_buf; __u64 cpu_affinity; }; /** * struct acrn_gp_regs - General registers of a User VM * @rax: Value of register RAX * @rcx: Value of register RCX * @rdx: Value of register RDX * @rbx: Value of register RBX * @rsp: Value of register RSP * @rbp: Value of register RBP * @rsi: Value of register RSI * @rdi: Value of register RDI * @r8: Value of register R8 * @r9: Value of register R9 * @r10: Value of register R10 * @r11: Value of register R11 * @r12: Value of register R12 * @r13: Value of register R13 * @r14: Value of register R14 * @r15: Value of register R15 */ struct acrn_gp_regs { __le64 rax; __le64 rcx; __le64 rdx; __le64 rbx; __le64 rsp; __le64 rbp; __le64 rsi; __le64 rdi; __le64 r8; __le64 r9; __le64 r10; __le64 r11; __le64 r12; __le64 r13; __le64 r14; __le64 r15; }; /** * struct acrn_descriptor_ptr - Segment descriptor table of a User VM. * @limit: Limit field. * @base: Base field. * @reserved: Reserved and must be 0. */ struct acrn_descriptor_ptr { __le16 limit; __le64 base; __le16 reserved[3]; } __attribute__ ((__packed__)); /** * struct acrn_regs - Registers structure of a User VM * @gprs: General registers * @gdt: Global Descriptor Table * @idt: Interrupt Descriptor Table * @rip: Value of register RIP * @cs_base: Base of code segment selector * @cr0: Value of register CR0 * @cr4: Value of register CR4 * @cr3: Value of register CR3 * @ia32_efer: Value of IA32_EFER MSR * @rflags: Value of regsiter RFLAGS * @reserved_64: Reserved and must be 0 * @cs_ar: Attribute field of code segment selector * @cs_limit: Limit field of code segment selector * @reserved_32: Reserved and must be 0 * @cs_sel: Value of code segment selector * @ss_sel: Value of stack segment selector * @ds_sel: Value of data segment selector * @es_sel: Value of extra segment selector * @fs_sel: Value of FS selector * @gs_sel: Value of GS selector * @ldt_sel: Value of LDT descriptor selector * @tr_sel: Value of TSS descriptor selector */ struct acrn_regs { struct acrn_gp_regs gprs; struct acrn_descriptor_ptr gdt; struct acrn_descriptor_ptr idt; __le64 rip; __le64 cs_base; __le64 cr0; __le64 cr4; __le64 cr3; __le64 ia32_efer; __le64 rflags; __le64 reserved_64[4]; __le32 cs_ar; __le32 cs_limit; __le32 reserved_32[3]; __le16 cs_sel; __le16 ss_sel; __le16 ds_sel; __le16 es_sel; __le16 fs_sel; __le16 gs_sel; __le16 ldt_sel; __le16 tr_sel; }; /** * struct acrn_vcpu_regs - Info of vCPU registers state * @vcpu_id: vCPU ID * @reserved: Reserved and must be 0 * @vcpu_regs: vCPU registers state * * This structure will be passed to hypervisor directly. */ struct acrn_vcpu_regs { __u16 vcpu_id; __u16 reserved[3]; struct acrn_regs vcpu_regs; }; #define ACRN_MEM_ACCESS_RIGHT_MASK 0x00000007U #define ACRN_MEM_ACCESS_READ 0x00000001U #define ACRN_MEM_ACCESS_WRITE 0x00000002U #define ACRN_MEM_ACCESS_EXEC 0x00000004U #define ACRN_MEM_ACCESS_RWX (ACRN_MEM_ACCESS_READ | \ ACRN_MEM_ACCESS_WRITE | \ ACRN_MEM_ACCESS_EXEC) #define ACRN_MEM_TYPE_MASK 0x000007C0U #define ACRN_MEM_TYPE_WB 0x00000040U #define ACRN_MEM_TYPE_WT 0x00000080U #define ACRN_MEM_TYPE_UC 0x00000100U #define ACRN_MEM_TYPE_WC 0x00000200U #define ACRN_MEM_TYPE_WP 0x00000400U /* Memory mapping types */ #define ACRN_MEMMAP_RAM 0 #define ACRN_MEMMAP_MMIO 1 /** * struct acrn_vm_memmap - A EPT memory mapping info for a User VM. * @type: Type of the memory mapping (ACRM_MEMMAP_*). * Pass to hypervisor directly. * @attr: Attribute of the memory mapping. * Pass to hypervisor directly. * @user_vm_pa: Physical address of User VM. * Pass to hypervisor directly. * @service_vm_pa: Physical address of Service VM. * Pass to hypervisor directly. * @vma_base: VMA address of Service VM. Pass to hypervisor directly. * @len: Length of the memory mapping. * Pass to hypervisor directly. */ struct acrn_vm_memmap { __u32 type; __u32 attr; __u64 user_vm_pa; union { __u64 service_vm_pa; __u64 vma_base; }; __u64 len; }; /* Type of interrupt of a passthrough device */ #define ACRN_PTDEV_IRQ_INTX 0 #define ACRN_PTDEV_IRQ_MSI 1 #define ACRN_PTDEV_IRQ_MSIX 2 /** * struct acrn_ptdev_irq - Interrupt data of a passthrough device. * @type: Type (ACRN_PTDEV_IRQ_*) * @virt_bdf: Virtual Bus/Device/Function * @phys_bdf: Physical Bus/Device/Function * @intx: Info of interrupt * @intx.virt_pin: Virtual IOAPIC pin * @intx.phys_pin: Physical IOAPIC pin * @intx.is_pic_pin: Is PIC pin or not * * This structure will be passed to hypervisor directly. */ struct acrn_ptdev_irq { __u32 type; __u16 virt_bdf; __u16 phys_bdf; struct { __u32 virt_pin; __u32 phys_pin; __u32 is_pic_pin; } intx; }; /* Type of PCI device assignment */ #define ACRN_PTDEV_QUIRK_ASSIGN (1U << 0) #define ACRN_PCI_NUM_BARS 6 /** * struct acrn_pcidev - Info for assigning or de-assigning a PCI device * @type: Type of the assignment * @virt_bdf: Virtual Bus/Device/Function * @phys_bdf: Physical Bus/Device/Function * @intr_line: PCI interrupt line * @intr_pin: PCI interrupt pin * @bar: PCI BARs. * * This structure will be passed to hypervisor directly. */ struct acrn_pcidev { __u32 type; __u16 virt_bdf; __u16 phys_bdf; __u8 intr_line; __u8 intr_pin; __u32 bar[ACRN_PCI_NUM_BARS]; }; /** * struct acrn_msi_entry - Info for injecting a MSI interrupt to a VM * @msi_addr: MSI addr[19:12] with dest vCPU ID * @msi_data: MSI data[7:0] with vector */ struct acrn_msi_entry { __u64 msi_addr; __u64 msi_data; }; struct acrn_acpi_generic_address { __u8 space_id; __u8 bit_width; __u8 bit_offset; __u8 access_size; __u64 address; } __attribute__ ((__packed__)); /** * struct acrn_cstate_data - A C state package defined in ACPI * @cx_reg: Register of the C state object * @type: Type of the C state object * @latency: The worst-case latency to enter and exit this C state * @power: The average power consumption when in this C state */ struct acrn_cstate_data { struct acrn_acpi_generic_address cx_reg; __u8 type; __u32 latency; __u64 power; }; /** * struct acrn_pstate_data - A P state package defined in ACPI * @core_frequency: CPU frequency (in MHz). * @power: Power dissipation (in milliwatts). * @transition_latency: The worst-case latency in microseconds that CPU is * unavailable during a transition from any P state to * this P state. * @bus_master_latency: The worst-case latency in microseconds that Bus Masters * are prevented from accessing memory during a transition * from any P state to this P state. * @control: The value to be written to Performance Control Register * @status: Transition status. */ struct acrn_pstate_data { __u64 core_frequency; __u64 power; __u64 transition_latency; __u64 bus_master_latency; __u64 control; __u64 status; }; #define PMCMD_TYPE_MASK 0x000000ff enum acrn_pm_cmd_type { ACRN_PMCMD_GET_PX_CNT, ACRN_PMCMD_GET_PX_DATA, ACRN_PMCMD_GET_CX_CNT, ACRN_PMCMD_GET_CX_DATA, }; #define ACRN_IOEVENTFD_FLAG_PIO 0x01 #define ACRN_IOEVENTFD_FLAG_DATAMATCH 0x02 #define ACRN_IOEVENTFD_FLAG_DEASSIGN 0x04 /** * struct acrn_ioeventfd - Data to operate a &struct hsm_ioeventfd * @fd: The fd of eventfd associated with a hsm_ioeventfd * @flags: Logical-OR of ACRN_IOEVENTFD_FLAG_* * @addr: The start address of IO range of ioeventfd * @len: The length of IO range of ioeventfd * @reserved: Reserved and should be 0 * @data: Data for data matching * * Without flag ACRN_IOEVENTFD_FLAG_DEASSIGN, ioctl ACRN_IOCTL_IOEVENTFD * creates a &struct hsm_ioeventfd with properties originated from &struct * acrn_ioeventfd. With flag ACRN_IOEVENTFD_FLAG_DEASSIGN, ioctl * ACRN_IOCTL_IOEVENTFD destroys the &struct hsm_ioeventfd matching the fd. */ struct acrn_ioeventfd { __u32 fd; __u32 flags; __u64 addr; __u32 len; __u32 reserved; __u64 data; }; #define ACRN_IRQFD_FLAG_DEASSIGN 0x01 /** * struct acrn_irqfd - Data to operate a &struct hsm_irqfd * @fd: The fd of eventfd associated with a hsm_irqfd * @flags: Logical-OR of ACRN_IRQFD_FLAG_* * @msi: Info of MSI associated with the irqfd */ struct acrn_irqfd { __s32 fd; __u32 flags; struct acrn_msi_entry msi; }; /* The ioctl type, documented in ioctl-number.rst */ #define ACRN_IOCTL_TYPE 0xA2 /* * Common IOCTL IDs definition for ACRN userspace */ #define ACRN_IOCTL_CREATE_VM \ _IOWR(ACRN_IOCTL_TYPE, 0x10, struct acrn_vm_creation) #define ACRN_IOCTL_DESTROY_VM \ _IO(ACRN_IOCTL_TYPE, 0x11) #define ACRN_IOCTL_START_VM \ _IO(ACRN_IOCTL_TYPE, 0x12) #define ACRN_IOCTL_PAUSE_VM \ _IO(ACRN_IOCTL_TYPE, 0x13) #define ACRN_IOCTL_RESET_VM \ _IO(ACRN_IOCTL_TYPE, 0x15) #define ACRN_IOCTL_SET_VCPU_REGS \ _IOW(ACRN_IOCTL_TYPE, 0x16, struct acrn_vcpu_regs) #define ACRN_IOCTL_INJECT_MSI \ _IOW(ACRN_IOCTL_TYPE, 0x23, struct acrn_msi_entry) #define ACRN_IOCTL_VM_INTR_MONITOR \ _IOW(ACRN_IOCTL_TYPE, 0x24, unsigned long) #define ACRN_IOCTL_SET_IRQLINE \ _IOW(ACRN_IOCTL_TYPE, 0x25, __u64) #define ACRN_IOCTL_NOTIFY_REQUEST_FINISH \ _IOW(ACRN_IOCTL_TYPE, 0x31, struct acrn_ioreq_notify) #define ACRN_IOCTL_CREATE_IOREQ_CLIENT \ _IO(ACRN_IOCTL_TYPE, 0x32) #define ACRN_IOCTL_ATTACH_IOREQ_CLIENT \ _IO(ACRN_IOCTL_TYPE, 0x33) #define ACRN_IOCTL_DESTROY_IOREQ_CLIENT \ _IO(ACRN_IOCTL_TYPE, 0x34) #define ACRN_IOCTL_CLEAR_VM_IOREQ \ _IO(ACRN_IOCTL_TYPE, 0x35) #define ACRN_IOCTL_SET_MEMSEG \ _IOW(ACRN_IOCTL_TYPE, 0x41, struct acrn_vm_memmap) #define ACRN_IOCTL_UNSET_MEMSEG \ _IOW(ACRN_IOCTL_TYPE, 0x42, struct acrn_vm_memmap) #define ACRN_IOCTL_SET_PTDEV_INTR \ _IOW(ACRN_IOCTL_TYPE, 0x53, struct acrn_ptdev_irq) #define ACRN_IOCTL_RESET_PTDEV_INTR \ _IOW(ACRN_IOCTL_TYPE, 0x54, struct acrn_ptdev_irq) #define ACRN_IOCTL_ASSIGN_PCIDEV \ _IOW(ACRN_IOCTL_TYPE, 0x55, struct acrn_pcidev) #define ACRN_IOCTL_DEASSIGN_PCIDEV \ _IOW(ACRN_IOCTL_TYPE, 0x56, struct acrn_pcidev) #define ACRN_IOCTL_PM_GET_CPU_STATE \ _IOWR(ACRN_IOCTL_TYPE, 0x60, __u64) #define ACRN_IOCTL_IOEVENTFD \ _IOW(ACRN_IOCTL_TYPE, 0x70, struct acrn_ioeventfd) #define ACRN_IOCTL_IRQFD \ _IOW(ACRN_IOCTL_TYPE, 0x71, struct acrn_irqfd) #endif /* _ACRN_H */
[+]
..
[-] nfs3.h
[edit]
[-] bfs_fs.h
[edit]
[-] types.h
[edit]
[-] vbox_err.h
[edit]
[-] posix_acl.h
[edit]
[-] net_tstamp.h
[edit]
[-] am437x-vpfe.h
[edit]
[-] atm_zatm.h
[edit]
[-] pg.h
[edit]
[-] rkisp1-config.h
[edit]
[-] limits.h
[edit]
[-] omap3isp.h
[edit]
[-] kcmp.h
[edit]
[-] ipmi_ssif_bmc.h
[edit]
[-] atmapi.h
[edit]
[+]
raid
[-] fuse.h
[edit]
[-] cciss_ioctl.h
[edit]
[-] reiserfs_fs.h
[edit]
[-] random.h
[edit]
[-] taskstats.h
[edit]
[+]
netfilter_ipv4
[-] hpet.h
[edit]
[-] time.h
[edit]
[-] netfilter.h
[edit]
[-] vtpm_proxy.h
[edit]
[-] erspan.h
[edit]
[-] media-bus-format.h
[edit]
[-] dlm_plock.h
[edit]
[-] ultrasound.h
[edit]
[-] romfs_fs.h
[edit]
[-] ipmi_bmc.h
[edit]
[-] soundcard.h
[edit]
[-] dcbnl.h
[edit]
[-] seg6_genl.h
[edit]
[-] switchtec_ioctl.h
[edit]
[-] ppp-comp.h
[edit]
[-] mei_uuid.h
[edit]
[-] if_ether.h
[edit]
[-] lp.h
[edit]
[-] meye.h
[edit]
[-] perf_event.h
[edit]
[-] if_phonet.h
[edit]
[-] pktcdvd.h
[edit]
[-] cramfs_fs.h
[edit]
[-] virtio_console.h
[edit]
[-] termios.h
[edit]
[-] mptcp_pm.h
[edit]
[-] nfs_idmap.h
[edit]
[-] smc_diag.h
[edit]
[-] synclink.h
[edit]
[-] kcov.h
[edit]
[-] fiemap.h
[edit]
[-] nbd-netlink.h
[edit]
[-] ip_vs.h
[edit]
[-] kvm_para.h
[edit]
[-] pps.h
[edit]
[-] uio.h
[edit]
[-] jffs2.h
[edit]
[-] ipv6.h
[edit]
[-] ipx.h
[edit]
[-] acrn.h
[edit]
[-] um_timetravel.h
[edit]
[+]
android
[-] vsockmon.h
[edit]
[-] cm4000_cs.h
[edit]
[-] bcm933xx_hcs.h
[edit]
[-] map_to_7segment.h
[edit]
[-] tipc.h
[edit]
[+]
netfilter_ipv6
[-] bt-bmc.h
[edit]
[-] netfilter_ipv4.h
[edit]
[-] bits.h
[edit]
[-] ioctl.h
[edit]
[-] icmpv6.h
[edit]
[+]
hsi
[-] netfilter_arp.h
[edit]
[-] userfaultfd.h
[edit]
[-] mount.h
[edit]
[-] psample.h
[edit]
[-] psp-sev.h
[edit]
[-] in6.h
[edit]
[-] rfkill.h
[edit]
[-] dns_resolver.h
[edit]
[+]
usb
[-] tty_flags.h
[edit]
[+]
mmc
[-] prctl.h
[edit]
[-] cuda.h
[edit]
[-] netfilter_bridge.h
[edit]
[-] if_packet.h
[edit]
[-] input.h
[edit]
[-] if_bonding.h
[edit]
[-] nfs_fs.h
[edit]
[-] tipc_netlink.h
[edit]
[-] phonet.h
[edit]
[-] handshake.h
[edit]
[-] screen_info.h
[edit]
[-] if_team.h
[edit]
[-] fou.h
[edit]
[-] atalk.h
[edit]
[-] adb.h
[edit]
[-] time_types.h
[edit]
[-] sync_file.h
[edit]
[-] version.h
[edit]
[-] pmu.h
[edit]
[-] veth.h
[edit]
[-] virtio_pmem.h
[edit]
[-] zorro.h
[edit]
[-] ethtool_netlink.h
[edit]
[-] nvram.h
[edit]
[-] kvm.h
[edit]
[-] nl80211.h
[edit]
[-] udp.h
[edit]
[-] udmabuf.h
[edit]
[-] fb.h
[edit]
[-] atm_nicstar.h
[edit]
[-] vfio_ccw.h
[edit]
[-] vm_sockets_diag.h
[edit]
[-] netlink.h
[edit]
[-] dlmconstants.h
[edit]
[-] auto_fs4.h
[edit]
[-] nfs.h
[edit]
[-] dqblk_xfs.h
[edit]
[-] usbdevice_fs.h
[edit]
[-] max2175.h
[edit]
[-] matroxfb.h
[edit]
[-] if_addrlabel.h
[edit]
[-] in_route.h
[edit]
[-] sed-opal.h
[edit]
[+]
can
[-] gsmmux.h
[edit]
[-] fscrypt.h
[edit]
[-] blktrace_api.h
[edit]
[-] if_infiniband.h
[edit]
[+]
genwqe
[-] kdev_t.h
[edit]
[-] loop.h
[edit]
[-] serial.h
[edit]
[-] fanotify.h
[edit]
[-] edd.h
[edit]
[+]
spi
[-] openat2.h
[edit]
[-] dlm_netlink.h
[edit]
[-] udf_fs_i.h
[edit]
[-] netrom.h
[edit]
[-] virtio_fs.h
[edit]
[-] i2c-dev.h
[edit]
[-] v4l2-mediabus.h
[edit]
[-] virtio_blk.h
[edit]
[-] ife.h
[edit]
[-] sysctl.h
[edit]
[-] neighbour.h
[edit]
[-] dlm_device.h
[edit]
[-] media.h
[edit]
[-] sonet.h
[edit]
[-] wait.h
[edit]
[-] aspeed-lpc-ctrl.h
[edit]
[-] phantom.h
[edit]
[-] signalfd.h
[edit]
[-] rio_cm_cdev.h
[edit]
[-] if_ltalk.h
[edit]
[-] tty.h
[edit]
[-] vduse.h
[edit]
[-] in.h
[edit]
[-] cxl_mem.h
[edit]
[-] idxd.h
[edit]
[-] if_link.h
[edit]
[-] dm-log-userspace.h
[edit]
[-] target_core_user.h
[edit]
[-] virtio_gpio.h
[edit]
[-] btf.h
[edit]
[-] rtnetlink.h
[edit]
[-] mptcp.h
[edit]
[-] vhost_types.h
[edit]
[-] audit.h
[edit]
[-] close_range.h
[edit]
[-] qnx4_fs.h
[edit]
[-] tee.h
[edit]
[-] mroute.h
[edit]
[-] nfs4_mount.h
[edit]
[-] can.h
[edit]
[-] virtio_mem.h
[edit]
[-] pkt_cls.h
[edit]
[-] kernelcapi.h
[edit]
[-] elf-fdpic.h
[edit]
[-] btrfs.h
[edit]
[-] dpll.h
[edit]
[-] posix_types.h
[edit]
[-] cn_proc.h
[edit]
[-] quota.h
[edit]
[-] timex.h
[edit]
[+]
cifs
[+]
caif
[-] ethtool.h
[edit]
[-] virtio_ring.h
[edit]
[-] fd.h
[edit]
[-] capi.h
[edit]
[-] if_pppol2tp.h
[edit]
[-] thermal.h
[edit]
[-] igmp.h
[edit]
[-] chio.h
[edit]
[-] fsverity.h
[edit]
[-] ncsi.h
[edit]
[-] wwan.h
[edit]
[-] hsr_netlink.h
[edit]
[-] atm_he.h
[edit]
[-] timerfd.h
[edit]
[-] radeonfb.h
[edit]
[-] atmclip.h
[edit]
[-] pci.h
[edit]
[-] coresight-stm.h
[edit]
[-] cachefiles.h
[edit]
[-] if_macsec.h
[edit]
[-] mman.h
[edit]
[-] ila.h
[edit]
[-] if_plip.h
[edit]
[-] swab.h
[edit]
[-] atmbr2684.h
[edit]
[+]
netfilter_bridge
[-] binfmts.h
[edit]
[-] watchdog.h
[edit]
[-] rseq.h
[edit]
[-] smc.h
[edit]
[-] seg6_local.h
[edit]
[-] pci_regs.h
[edit]
[-] genetlink.h
[edit]
[-] sev-guest.h
[edit]
[-] atmdev.h
[edit]
[-] joystick.h
[edit]
[-] string.h
[edit]
[-] sonypi.h
[edit]
[-] netconf.h
[edit]
[-] batman_adv.h
[edit]
[-] arm_sdei.h
[edit]
[-] keyboard.h
[edit]
[-] hash_info.h
[edit]
[-] nfc.h
[edit]
[-] hidraw.h
[edit]
[-] kfd_sysfs.h
[edit]
[-] tps6594_pfsm.h
[edit]
[-] virtio_snd.h
[edit]
[-] sem.h
[edit]
[-] gameport.h
[edit]
[-] errno.h
[edit]
[-] dn.h
[edit]
[-] fib_rules.h
[edit]
[-] mqueue.h
[edit]
[-] adfs_fs.h
[edit]
[-] pfkeyv2.h
[edit]
[-] mmtimer.h
[edit]
[-] route.h
[edit]
[-] hyperv.h
[edit]
[-] ivtv.h
[edit]
[-] vdpa.h
[edit]
[-] membarrier.h
[edit]
[-] ppp-ioctl.h
[edit]
[-] if_hippi.h
[edit]
[-] vbox_vmmdev_types.h
[edit]
[-] cryptouser.h
[edit]
[-] cycx_cfm.h
[edit]
[-] if_fc.h
[edit]
[-] nfs4.h
[edit]
[-] parport.h
[edit]
[-] mrp_bridge.h
[edit]
[-] vm_sockets.h
[edit]
[-] watch_queue.h
[edit]
[+]
netfilter
[+]
hdlc
[-] cgroupstats.h
[edit]
[-] mdio.h
[edit]
[-] nfsacl.h
[edit]
[-] iommufd.h
[edit]
[-] atm_idt77105.h
[edit]
[-] virtio_scmi.h
[edit]
[-] nsfs.h
[edit]
[-] sockios.h
[edit]
[-] tdx-guest.h
[edit]
[-] apm_bios.h
[edit]
[-] blkpg.h
[edit]
[-] virtio_bt.h
[edit]
[-] btrfs_tree.h
[edit]
[-] netfilter_decnet.h
[edit]
[-] bsg.h
[edit]
[-] netfilter_ipv6.h
[edit]
[-] kernel.h
[edit]
[-] ptrace.h
[edit]
[-] iso_fs.h
[edit]
[-] kd.h
[edit]
[-] patchkey.h
[edit]
[-] arcfb.h
[edit]
[-] signal.h
[edit]
[-] virtio_pci.h
[edit]
[-] tcp_metrics.h
[edit]
[-] xfrm.h
[edit]
[-] unistd.h
[edit]
[-] if_vlan.h
[edit]
[-] io_uring.h
[edit]
[+]
misc
[-] dma-buf.h
[edit]
[-] wireguard.h
[edit]
[-] remoteproc_cdev.h
[edit]
[-] l2tp.h
[edit]
[-] elf.h
[edit]
[-] ptp_clock.h
[edit]
[-] loadpin.h
[edit]
[-] pr.h
[edit]
[-] scif_ioctl.h
[edit]
[-] videodev2.h
[edit]
[-] dlm.h
[edit]
[-] cciss_defs.h
[edit]
[-] reiserfs_xattr.h
[edit]
[-] psci.h
[edit]
[-] virtio_vsock.h
[edit]
[-] serio.h
[edit]
[-] nfsd_netlink.h
[edit]
[-] msdos_fs.h
[edit]
[-] virtio_9p.h
[edit]
[-] fsi.h
[edit]
[+]
byteorder
[-] rpl_iptunnel.h
[edit]
[-] serial_core.h
[edit]
[-] kfd_ioctl.h
[edit]
[-] virtio_gpu.h
[edit]
[-] magic.h
[edit]
[-] netlink_diag.h
[edit]
[-] un.h
[edit]
[-] if_alg.h
[edit]
[-] sysinfo.h
[edit]
[-] coda.h
[edit]
[-] virtio_iommu.h
[edit]
[-] if_tunnel.h
[edit]
[-] if_arcnet.h
[edit]
[-] capability.h
[edit]
[-] seg6_hmac.h
[edit]
[-] if_pppox.h
[edit]
[-] nitro_enclaves.h
[edit]
[-] i8k.h
[edit]
[-] if_slip.h
[edit]
[-] ioprio.h
[edit]
[-] packet_diag.h
[edit]
[-] usbip.h
[edit]
[-] tls.h
[edit]
[-] wmi.h
[edit]
[-] tcp.h
[edit]
[-] qemu_fw_cfg.h
[edit]
[-] pkt_sched.h
[edit]
[-] landlock.h
[edit]
[-] irqnr.h
[edit]
[-] atmlec.h
[edit]
[-] if_cablemodem.h
[edit]
[-] isst_if.h
[edit]
[-] const.h
[edit]
[-] module.h
[edit]
[-] utsname.h
[edit]
[-] vmcore.h
[edit]
[-] lsm.h
[edit]
[-] nvme_ioctl.h
[edit]
[-] if_arp.h
[edit]
[-] fpga-dfl.h
[edit]
[-] i2o-dev.h
[edit]
[-] userio.h
[edit]
[-] efs_fs_sb.h
[edit]
[-] nubus.h
[edit]
[-] netdevice.h
[edit]
[-] if_xdp.h
[edit]
[-] stm.h
[edit]
[-] ipmi_msgdefs.h
[edit]
[-] devlink.h
[edit]
[-] zorro_ids.h
[edit]
[-] inet_diag.h
[edit]
[-] falloc.h
[edit]
[-] psp-dbc.h
[edit]
[-] virtio_rng.h
[edit]
[-] fadvise.h
[edit]
[-] reboot.h
[edit]
[-] tiocl.h
[edit]
[-] if_addr.h
[edit]
[-] filter.h
[edit]
[+]
nfsd
[-] kexec.h
[edit]
[-] mei.h
[edit]
[-] f2fs.h
[edit]
[+]
tc_act
[-] xilinx-v4l2-controls.h
[edit]
[-] gfs2_ondisk.h
[edit]
[-] sctp.h
[edit]
[-] uuid.h
[edit]
[-] rose.h
[edit]
[-] v4l2-controls.h
[edit]
[-] seg6.h
[edit]
[-] eventpoll.h
[edit]
[-] bpf_common.h
[edit]
[-] hdreg.h
[edit]
[-] param.h
[edit]
[-] input-event-codes.h
[edit]
[-] atmppp.h
[edit]
[-] unix_diag.h
[edit]
[-] virtio_mmio.h
[edit]
[-] serial_reg.h
[edit]
[-] ppdev.h
[edit]
[-] hw_breakpoint.h
[edit]
[-] ipsec.h
[edit]
[-] socket.h
[edit]
[-] qnxtypes.h
[edit]
[+]
dvb
[+]
surface_aggregator
[-] gen_stats.h
[edit]
[-] atm_eni.h
[edit]
[-] openvswitch.h
[edit]
[-] resource.h
[edit]
[-] ax25.h
[edit]
[-] atmsap.h
[edit]
[-] connector.h
[edit]
[-] rds.h
[edit]
[-] atmarp.h
[edit]
[-] elf-em.h
[edit]
[-] qrtr.h
[edit]
[-] fsmap.h
[edit]
[-] stat.h
[edit]
[-] virtio_types.h
[edit]
[-] coff.h
[edit]
[-] wireless.h
[edit]
[-] fs.h
[edit]
[-] ip6_tunnel.h
[edit]
[-] eventfd.h
[edit]
[-] atmsvc.h
[edit]
[-] aspeed-p2a-ctrl.h
[edit]
[-] errqueue.h
[edit]
[-] mpls_iptunnel.h
[edit]
[-] virtio_scsi.h
[edit]
[-] kernel-page-flags.h
[edit]
[-] atmioc.h
[edit]
[-] agpgart.h
[edit]
[-] net_namespace.h
[edit]
[-] virtio_input.h
[edit]
[-] bpf_perf_event.h
[edit]
[-] bpf.h
[edit]
[-] sound.h
[edit]
[-] atm_tcp.h
[edit]
[-] futex.h
[edit]
[-] pidfd.h
[edit]
[-] sched.h
[edit]
[-] snmp.h
[edit]
[-] xdp_diag.h
[edit]
[-] x25.h
[edit]
[-] nexthop.h
[edit]
[-] uleds.h
[edit]
[-] cdrom.h
[edit]
[-] suspend_ioctls.h
[edit]
[-] firewire-constants.h
[edit]
[-] pcitest.h
[edit]
[-] cec.h
[edit]
[-] netdev.h
[edit]
[-] vfio.h
[edit]
[-] inotify.h
[edit]
[-] omapfb.h
[edit]
[-] cec-funcs.h
[edit]
[-] lirc.h
[edit]
[-] mshv.h
[edit]
[-] if_bridge.h
[edit]
[-] seg6_iptunnel.h
[edit]
[-] bpqether.h
[edit]
[-] tipc_sockets_diag.h
[edit]
[-] i2c.h
[edit]
[-] net_shaper.h
[edit]
[-] affs_hardblocks.h
[edit]
[-] mtio.h
[edit]
[-] seccomp.h
[edit]
[-] v4l2-dv-timings.h
[edit]
[-] hid.h
[edit]
[-] auto_fs.h
[edit]
[+]
sunrpc
[-] nfs2.h
[edit]
[-] keyctl.h
[edit]
[-] cfm_bridge.h
[edit]
[-] virtio_balloon.h
[edit]
[-] rpmsg_types.h
[edit]
[-] aio_abi.h
[edit]
[-] memfd.h
[edit]
[-] major.h
[edit]
[-] toshiba.h
[edit]
[-] oom.h
[edit]
[-] atmmpc.h
[edit]
[-] rio_mport_cdev.h
[edit]
[-] selinux_netlink.h
[edit]
[-] nfs_mount.h
[edit]
[-] firewire-cdev.h
[edit]
[-] dccp.h
[edit]
[-] ndctl.h
[edit]
[-] xattr.h
[edit]
[+]
netfilter_arp
[-] gtp.h
[edit]
[-] ppp_defs.h
[edit]
[-] fsl_hypervisor.h
[edit]
[-] uvcvideo.h
[edit]
[+]
iio
[-] nilfs2_ondisk.h
[edit]
[-] rxrpc.h
[edit]
[-] ivtvfb.h
[edit]
[-] atm.h
[edit]
[-] vt.h
[edit]
[-] sock_diag.h
[edit]
[-] llc.h
[edit]
[-] ipc.h
[edit]
[-] if_ppp.h
[edit]
[-] hdlc.h
[edit]
[-] baycom.h
[edit]
[-] v4l2-common.h
[edit]
[-] vhost.h
[edit]
[+]
isdn
[-] virtio_i2c.h
[edit]
[-] rtc.h
[edit]
[-] if_eql.h
[edit]
[-] v4l2-subdev.h
[edit]
[-] fcntl.h
[edit]
[-] batadv_packet.h
[edit]
[-] if_x25.h
[edit]
[-] if_tun.h
[edit]
[-] nbd.h
[edit]
[-] net.h
[edit]
[-] ccs.h
[edit]
[-] a.out.h
[edit]
[-] mii.h
[edit]
[-] dm-ioctl.h
[edit]
[-] ip.h
[edit]
[-] rpl.h
[edit]
[-] personality.h
[edit]
[-] stddef.h
[edit]
[-] rpmsg.h
[edit]
[-] vboxguest.h
[edit]
[-] smiapp.h
[edit]
[-] auxvec.h
[edit]
[-] vfio_zdev.h
[edit]
[-] minix_fs.h
[edit]
[-] fdreg.h
[edit]
[-] ipmi.h
[edit]
[-] msg.h
[edit]
[-] blkzoned.h
[edit]
[-] securebits.h
[edit]
[-] pfrut.h
[edit]
[-] virtio_crypto.h
[edit]
[-] acct.h
[edit]
[-] virtio_net.h
[edit]
[-] scc.h
[edit]
[-] uhid.h
[edit]
[-] times.h
[edit]
[-] uinput.h
[edit]
[-] mpls.h
[edit]
[-] utime.h
[edit]
[-] auto_dev-ioctl.h
[edit]
[-] fsl_mc.h
[edit]
[-] lwtunnel.h
[edit]
[-] poll.h
[edit]
[-] icmp.h
[edit]
[-] virtio_pcidev.h
[edit]
[-] gpio.h
[edit]
[-] shm.h
[edit]
[-] ipv6_route.h
[edit]
[-] tipc_config.h
[edit]
[-] ethtool_netlink_generated.h
[edit]
[-] mroute6.h
[edit]
[-] virtio_ids.h
[edit]
[-] net_dropmon.h
[edit]
[-] posix_acl_xattr.h
[edit]
[-] bpfilter.h
[edit]
[-] virtio_config.h
[edit]
[-] libc-compat.h
[edit]
[-] hiddev.h
[edit]
[-] nilfs2_api.h
[edit]
[+]
sched
[+]
tc_ematch
[-] hdlcdrv.h
[edit]
[-] dma-heap.h
[edit]
[-] kcm.h
[edit]
[-] if.h
[edit]
[-] if_fddi.h
[edit]
[-] mempolicy.h
[edit]