PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ /* * Copyright 2020-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. */ #ifndef _LINUX_NITRO_ENCLAVES_H_ #define _LINUX_NITRO_ENCLAVES_H_ #include <linux/types.h> /** * DOC: Nitro Enclaves (NE) Kernel Driver Interface */ /** * NE_CREATE_VM - The command is used to create a slot that is associated with * an enclave VM. * The generated unique slot id is an output parameter. * The ioctl can be invoked on the /dev/nitro_enclaves fd, before * setting any resources, such as memory and vCPUs, for an * enclave. Memory and vCPUs are set for the slot mapped to an enclave. * A NE CPU pool has to be set before calling this function. The * pool can be set after the NE driver load, using * /sys/module/nitro_enclaves/parameters/ne_cpus. * Its format is the detailed in the cpu-lists section: * https://www.kernel.org/doc/html/latest/admin-guide/kernel-parameters.html * CPU 0 and its siblings have to remain available for the * primary / parent VM, so they cannot be set for enclaves. Full * CPU core(s), from the same NUMA node, need(s) to be included * in the CPU pool. * * Context: Process context. * Return: * * Enclave file descriptor - Enclave file descriptor used with * ioctl calls to set vCPUs and memory * regions, then start the enclave. * * -1 - There was a failure in the ioctl logic. * On failure, errno is set to: * * EFAULT - copy_to_user() failure. * * ENOMEM - Memory allocation failure for internal * bookkeeping variables. * * NE_ERR_NO_CPUS_AVAIL_IN_POOL - No NE CPU pool set / no CPUs available * in the pool. * * Error codes from get_unused_fd_flags() and anon_inode_getfile(). * * Error codes from the NE PCI device request. */ #define NE_CREATE_VM _IOR(0xAE, 0x20, __u64) /** * NE_ADD_VCPU - The command is used to set a vCPU for an enclave. The vCPU can * be auto-chosen from the NE CPU pool or it can be set by the * caller, with the note that it needs to be available in the NE * CPU pool. Full CPU core(s), from the same NUMA node, need(s) to * be associated with an enclave. * The vCPU id is an input / output parameter. If its value is 0, * then a CPU is chosen from the enclave CPU pool and returned via * this parameter. * The ioctl can be invoked on the enclave fd, before an enclave * is started. * * Context: Process context. * Return: * * 0 - Logic successfully completed. * * -1 - There was a failure in the ioctl logic. * On failure, errno is set to: * * EFAULT - copy_from_user() / copy_to_user() failure. * * ENOMEM - Memory allocation failure for internal * bookkeeping variables. * * EIO - Current task mm is not the same as the one * that created the enclave. * * NE_ERR_NO_CPUS_AVAIL_IN_POOL - No CPUs available in the NE CPU pool. * * NE_ERR_VCPU_ALREADY_USED - The provided vCPU is already used. * * NE_ERR_VCPU_NOT_IN_CPU_POOL - The provided vCPU is not available in the * NE CPU pool. * * NE_ERR_VCPU_INVALID_CPU_CORE - The core id of the provided vCPU is invalid * or out of range. * * NE_ERR_NOT_IN_INIT_STATE - The enclave is not in init state * (init = before being started). * * NE_ERR_INVALID_VCPU - The provided vCPU is not in the available * CPUs range. * * Error codes from the NE PCI device request. */ #define NE_ADD_VCPU _IOWR(0xAE, 0x21, __u32) /** * NE_GET_IMAGE_LOAD_INFO - The command is used to get information needed for * in-memory enclave image loading e.g. offset in * enclave memory to start placing the enclave image. * The image load info is an input / output parameter. * It includes info provided by the caller - flags - * and returns the offset in enclave memory where to * start placing the enclave image. * The ioctl can be invoked on the enclave fd, before * an enclave is started. * * Context: Process context. * Return: * * 0 - Logic successfully completed. * * -1 - There was a failure in the ioctl logic. * On failure, errno is set to: * * EFAULT - copy_from_user() / copy_to_user() failure. * * NE_ERR_NOT_IN_INIT_STATE - The enclave is not in init state (init = * before being started). * * NE_ERR_INVALID_FLAG_VALUE - The value of the provided flag is invalid. */ #define NE_GET_IMAGE_LOAD_INFO _IOWR(0xAE, 0x22, struct ne_image_load_info) /** * NE_SET_USER_MEMORY_REGION - The command is used to set a memory region for an * enclave, given the allocated memory from the * userspace. Enclave memory needs to be from the * same NUMA node as the enclave CPUs. * The user memory region is an input parameter. It * includes info provided by the caller - flags, * memory size and userspace address. * The ioctl can be invoked on the enclave fd, * before an enclave is started. * * Context: Process context. * Return: * * 0 - Logic successfully completed. * * -1 - There was a failure in the ioctl logic. * On failure, errno is set to: * * EFAULT - copy_from_user() failure. * * EINVAL - Invalid physical memory region(s) e.g. * unaligned address. * * EIO - Current task mm is not the same as * the one that created the enclave. * * ENOMEM - Memory allocation failure for internal * bookkeeping variables. * * NE_ERR_NOT_IN_INIT_STATE - The enclave is not in init state * (init = before being started). * * NE_ERR_INVALID_MEM_REGION_SIZE - The memory size of the region is not * multiple of 2 MiB. * * NE_ERR_INVALID_MEM_REGION_ADDR - Invalid user space address given. * * NE_ERR_UNALIGNED_MEM_REGION_ADDR - Unaligned user space address given. * * NE_ERR_MEM_REGION_ALREADY_USED - The memory region is already used. * * NE_ERR_MEM_NOT_HUGE_PAGE - The memory region is not backed by * huge pages. * * NE_ERR_MEM_DIFFERENT_NUMA_NODE - The memory region is not from the same * NUMA node as the CPUs. * * NE_ERR_MEM_MAX_REGIONS - The number of memory regions set for * the enclave reached maximum. * * NE_ERR_INVALID_PAGE_SIZE - The memory region is not backed by * pages multiple of 2 MiB. * * NE_ERR_INVALID_FLAG_VALUE - The value of the provided flag is invalid. * * Error codes from get_user_pages(). * * Error codes from the NE PCI device request. */ #define NE_SET_USER_MEMORY_REGION _IOW(0xAE, 0x23, struct ne_user_memory_region) /** * NE_START_ENCLAVE - The command is used to trigger enclave start after the * enclave resources, such as memory and CPU, have been set. * The enclave start info is an input / output parameter. It * includes info provided by the caller - enclave cid and * flags - and returns the cid (if input cid is 0). * The ioctl can be invoked on the enclave fd, after an * enclave slot is created and resources, such as memory and * vCPUs are set for an enclave. * * Context: Process context. * Return: * * 0 - Logic successfully completed. * * -1 - There was a failure in the ioctl logic. * On failure, errno is set to: * * EFAULT - copy_from_user() / copy_to_user() failure. * * NE_ERR_NOT_IN_INIT_STATE - The enclave is not in init state * (init = before being started). * * NE_ERR_NO_MEM_REGIONS_ADDED - No memory regions are set. * * NE_ERR_NO_VCPUS_ADDED - No vCPUs are set. * * NE_ERR_FULL_CORES_NOT_USED - Full core(s) not set for the enclave. * * NE_ERR_ENCLAVE_MEM_MIN_SIZE - Enclave memory is less than minimum * memory size (64 MiB). * * NE_ERR_INVALID_FLAG_VALUE - The value of the provided flag is invalid. * * NE_ERR_INVALID_ENCLAVE_CID - The provided enclave CID is invalid. * * Error codes from the NE PCI device request. */ #define NE_START_ENCLAVE _IOWR(0xAE, 0x24, struct ne_enclave_start_info) /** * DOC: NE specific error codes */ /** * NE_ERR_VCPU_ALREADY_USED - The provided vCPU is already used. */ #define NE_ERR_VCPU_ALREADY_USED (256) /** * NE_ERR_VCPU_NOT_IN_CPU_POOL - The provided vCPU is not available in the * NE CPU pool. */ #define NE_ERR_VCPU_NOT_IN_CPU_POOL (257) /** * NE_ERR_VCPU_INVALID_CPU_CORE - The core id of the provided vCPU is invalid * or out of range of the NE CPU pool. */ #define NE_ERR_VCPU_INVALID_CPU_CORE (258) /** * NE_ERR_INVALID_MEM_REGION_SIZE - The user space memory region size is not * multiple of 2 MiB. */ #define NE_ERR_INVALID_MEM_REGION_SIZE (259) /** * NE_ERR_INVALID_MEM_REGION_ADDR - The user space memory region address range * is invalid. */ #define NE_ERR_INVALID_MEM_REGION_ADDR (260) /** * NE_ERR_UNALIGNED_MEM_REGION_ADDR - The user space memory region address is * not aligned. */ #define NE_ERR_UNALIGNED_MEM_REGION_ADDR (261) /** * NE_ERR_MEM_REGION_ALREADY_USED - The user space memory region is already used. */ #define NE_ERR_MEM_REGION_ALREADY_USED (262) /** * NE_ERR_MEM_NOT_HUGE_PAGE - The user space memory region is not backed by * contiguous physical huge page(s). */ #define NE_ERR_MEM_NOT_HUGE_PAGE (263) /** * NE_ERR_MEM_DIFFERENT_NUMA_NODE - The user space memory region is backed by * pages from different NUMA nodes than the CPUs. */ #define NE_ERR_MEM_DIFFERENT_NUMA_NODE (264) /** * NE_ERR_MEM_MAX_REGIONS - The supported max memory regions per enclaves has * been reached. */ #define NE_ERR_MEM_MAX_REGIONS (265) /** * NE_ERR_NO_MEM_REGIONS_ADDED - The command to start an enclave is triggered * and no memory regions are added. */ #define NE_ERR_NO_MEM_REGIONS_ADDED (266) /** * NE_ERR_NO_VCPUS_ADDED - The command to start an enclave is triggered and no * vCPUs are added. */ #define NE_ERR_NO_VCPUS_ADDED (267) /** * NE_ERR_ENCLAVE_MEM_MIN_SIZE - The enclave memory size is lower than the * minimum supported. */ #define NE_ERR_ENCLAVE_MEM_MIN_SIZE (268) /** * NE_ERR_FULL_CORES_NOT_USED - The command to start an enclave is triggered and * full CPU cores are not set. */ #define NE_ERR_FULL_CORES_NOT_USED (269) /** * NE_ERR_NOT_IN_INIT_STATE - The enclave is not in init state when setting * resources or triggering start. */ #define NE_ERR_NOT_IN_INIT_STATE (270) /** * NE_ERR_INVALID_VCPU - The provided vCPU is out of range of the available CPUs. */ #define NE_ERR_INVALID_VCPU (271) /** * NE_ERR_NO_CPUS_AVAIL_IN_POOL - The command to create an enclave is triggered * and no CPUs are available in the pool. */ #define NE_ERR_NO_CPUS_AVAIL_IN_POOL (272) /** * NE_ERR_INVALID_PAGE_SIZE - The user space memory region is not backed by pages * multiple of 2 MiB. */ #define NE_ERR_INVALID_PAGE_SIZE (273) /** * NE_ERR_INVALID_FLAG_VALUE - The provided flag value is invalid. */ #define NE_ERR_INVALID_FLAG_VALUE (274) /** * NE_ERR_INVALID_ENCLAVE_CID - The provided enclave CID is invalid, either * being a well-known value or the CID of the * parent / primary VM. */ #define NE_ERR_INVALID_ENCLAVE_CID (275) /** * DOC: Image load info flags */ /** * NE_EIF_IMAGE - Enclave Image Format (EIF) */ #define NE_EIF_IMAGE (0x01) #define NE_IMAGE_LOAD_MAX_FLAG_VAL (0x02) /** * struct ne_image_load_info - Info necessary for in-memory enclave image * loading (in / out). * @flags: Flags to determine the enclave image type * (e.g. Enclave Image Format - EIF) (in). * @memory_offset: Offset in enclave memory where to start placing the * enclave image (out). */ struct ne_image_load_info { __u64 flags; __u64 memory_offset; }; /** * DOC: User memory region flags */ /** * NE_DEFAULT_MEMORY_REGION - Memory region for enclave general usage. */ #define NE_DEFAULT_MEMORY_REGION (0x00) #define NE_MEMORY_REGION_MAX_FLAG_VAL (0x01) /** * struct ne_user_memory_region - Memory region to be set for an enclave (in). * @flags: Flags to determine the usage for the memory region (in). * @memory_size: The size, in bytes, of the memory region to be set for * an enclave (in). * @userspace_addr: The start address of the userspace allocated memory of * the memory region to set for an enclave (in). */ struct ne_user_memory_region { __u64 flags; __u64 memory_size; __u64 userspace_addr; }; /** * DOC: Enclave start info flags */ /** * NE_ENCLAVE_PRODUCTION_MODE - Start enclave in production mode. */ #define NE_ENCLAVE_PRODUCTION_MODE (0x00) /** * NE_ENCLAVE_DEBUG_MODE - Start enclave in debug mode. */ #define NE_ENCLAVE_DEBUG_MODE (0x01) #define NE_ENCLAVE_START_MAX_FLAG_VAL (0x02) /** * struct ne_enclave_start_info - Setup info necessary for enclave start (in / out). * @flags: Flags for the enclave to start with (e.g. debug mode) (in). * @enclave_cid: Context ID (CID) for the enclave vsock device. If 0 as * input, the CID is autogenerated by the hypervisor and * returned back as output by the driver (in / out). */ struct ne_enclave_start_info { __u64 flags; __u64 enclave_cid; }; #endif /* _LINUX_NITRO_ENCLAVES_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]