PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _LINUX_PRCTL_H #define _LINUX_PRCTL_H #include <linux/types.h> /* Values to pass as first argument to prctl() */ #define PR_SET_PDEATHSIG 1 /* Second arg is a signal */ #define PR_GET_PDEATHSIG 2 /* Second arg is a ptr to return the signal */ /* Get/set current->mm->dumpable */ #define PR_GET_DUMPABLE 3 #define PR_SET_DUMPABLE 4 /* Get/set unaligned access control bits (if meaningful) */ #define PR_GET_UNALIGN 5 #define PR_SET_UNALIGN 6 # define PR_UNALIGN_NOPRINT 1 /* silently fix up unaligned user accesses */ # define PR_UNALIGN_SIGBUS 2 /* generate SIGBUS on unaligned user access */ /* Get/set whether or not to drop capabilities on setuid() away from * uid 0 (as per security/commoncap.c) */ #define PR_GET_KEEPCAPS 7 #define PR_SET_KEEPCAPS 8 /* Get/set floating-point emulation control bits (if meaningful) */ #define PR_GET_FPEMU 9 #define PR_SET_FPEMU 10 # define PR_FPEMU_NOPRINT 1 /* silently emulate fp operations accesses */ # define PR_FPEMU_SIGFPE 2 /* don't emulate fp operations, send SIGFPE instead */ /* Get/set floating-point exception mode (if meaningful) */ #define PR_GET_FPEXC 11 #define PR_SET_FPEXC 12 # define PR_FP_EXC_SW_ENABLE 0x80 /* Use FPEXC for FP exception enables */ # define PR_FP_EXC_DIV 0x010000 /* floating point divide by zero */ # define PR_FP_EXC_OVF 0x020000 /* floating point overflow */ # define PR_FP_EXC_UND 0x040000 /* floating point underflow */ # define PR_FP_EXC_RES 0x080000 /* floating point inexact result */ # define PR_FP_EXC_INV 0x100000 /* floating point invalid operation */ # define PR_FP_EXC_DISABLED 0 /* FP exceptions disabled */ # define PR_FP_EXC_NONRECOV 1 /* async non-recoverable exc. mode */ # define PR_FP_EXC_ASYNC 2 /* async recoverable exception mode */ # define PR_FP_EXC_PRECISE 3 /* precise exception mode */ /* Get/set whether we use statistical process timing or accurate timestamp * based process timing */ #define PR_GET_TIMING 13 #define PR_SET_TIMING 14 # define PR_TIMING_STATISTICAL 0 /* Normal, traditional, statistical process timing */ # define PR_TIMING_TIMESTAMP 1 /* Accurate timestamp based process timing */ #define PR_SET_NAME 15 /* Set process name */ #define PR_GET_NAME 16 /* Get process name */ /* Get/set process endian */ #define PR_GET_ENDIAN 19 #define PR_SET_ENDIAN 20 # define PR_ENDIAN_BIG 0 # define PR_ENDIAN_LITTLE 1 /* True little endian mode */ # define PR_ENDIAN_PPC_LITTLE 2 /* "PowerPC" pseudo little endian */ /* Get/set process seccomp mode */ #define PR_GET_SECCOMP 21 #define PR_SET_SECCOMP 22 /* Get/set the capability bounding set (as per security/commoncap.c) */ #define PR_CAPBSET_READ 23 #define PR_CAPBSET_DROP 24 /* Get/set the process' ability to use the timestamp counter instruction */ #define PR_GET_TSC 25 #define PR_SET_TSC 26 # define PR_TSC_ENABLE 1 /* allow the use of the timestamp counter */ # define PR_TSC_SIGSEGV 2 /* throw a SIGSEGV instead of reading the TSC */ /* Get/set securebits (as per security/commoncap.c) */ #define PR_GET_SECUREBITS 27 #define PR_SET_SECUREBITS 28 /* * Get/set the timerslack as used by poll/select/nanosleep * A value of 0 means "use default" */ #define PR_SET_TIMERSLACK 29 #define PR_GET_TIMERSLACK 30 #define PR_TASK_PERF_EVENTS_DISABLE 31 #define PR_TASK_PERF_EVENTS_ENABLE 32 /* * Set early/late kill mode for hwpoison memory corruption. * This influences when the process gets killed on a memory corruption. */ #define PR_MCE_KILL 33 # define PR_MCE_KILL_CLEAR 0 # define PR_MCE_KILL_SET 1 # define PR_MCE_KILL_LATE 0 # define PR_MCE_KILL_EARLY 1 # define PR_MCE_KILL_DEFAULT 2 #define PR_MCE_KILL_GET 34 /* * Tune up process memory map specifics. */ #define PR_SET_MM 35 # define PR_SET_MM_START_CODE 1 # define PR_SET_MM_END_CODE 2 # define PR_SET_MM_START_DATA 3 # define PR_SET_MM_END_DATA 4 # define PR_SET_MM_START_STACK 5 # define PR_SET_MM_START_BRK 6 # define PR_SET_MM_BRK 7 # define PR_SET_MM_ARG_START 8 # define PR_SET_MM_ARG_END 9 # define PR_SET_MM_ENV_START 10 # define PR_SET_MM_ENV_END 11 # define PR_SET_MM_AUXV 12 # define PR_SET_MM_EXE_FILE 13 # define PR_SET_MM_MAP 14 # define PR_SET_MM_MAP_SIZE 15 /* * This structure provides new memory descriptor * map which mostly modifies /proc/pid/stat[m] * output for a task. This mostly done in a * sake of checkpoint/restore functionality. */ struct prctl_mm_map { __u64 start_code; /* code section bounds */ __u64 end_code; __u64 start_data; /* data section bounds */ __u64 end_data; __u64 start_brk; /* heap for brk() syscall */ __u64 brk; __u64 start_stack; /* stack starts at */ __u64 arg_start; /* command line arguments bounds */ __u64 arg_end; __u64 env_start; /* environment variables bounds */ __u64 env_end; __u64 *auxv; /* auxiliary vector */ __u32 auxv_size; /* vector size */ __u32 exe_fd; /* /proc/$pid/exe link file */ }; /* * Set specific pid that is allowed to ptrace the current task. * A value of 0 mean "no process". */ #define PR_SET_PTRACER 0x59616d61 # define PR_SET_PTRACER_ANY ((unsigned long)-1) #define PR_SET_CHILD_SUBREAPER 36 #define PR_GET_CHILD_SUBREAPER 37 /* * If no_new_privs is set, then operations that grant new privileges (i.e. * execve) will either fail or not grant them. This affects suid/sgid, * file capabilities, and LSMs. * * Operations that merely manipulate or drop existing privileges (setresuid, * capset, etc.) will still work. Drop those privileges if you want them gone. * * Changing LSM security domain is considered a new privilege. So, for example, * asking selinux for a specific new context (e.g. with runcon) will result * in execve returning -EPERM. * * See Documentation/userspace-api/no_new_privs.rst for more details. */ #define PR_SET_NO_NEW_PRIVS 38 #define PR_GET_NO_NEW_PRIVS 39 #define PR_GET_TID_ADDRESS 40 #define PR_SET_THP_DISABLE 41 #define PR_GET_THP_DISABLE 42 /* * No longer implemented, but left here to ensure the numbers stay reserved: */ #define PR_MPX_ENABLE_MANAGEMENT 43 #define PR_MPX_DISABLE_MANAGEMENT 44 #define PR_SET_FP_MODE 45 #define PR_GET_FP_MODE 46 # define PR_FP_MODE_FR (1 << 0) /* 64b FP registers */ # define PR_FP_MODE_FRE (1 << 1) /* 32b compatibility */ /* Control the ambient capability set */ #define PR_CAP_AMBIENT 47 # define PR_CAP_AMBIENT_IS_SET 1 # define PR_CAP_AMBIENT_RAISE 2 # define PR_CAP_AMBIENT_LOWER 3 # define PR_CAP_AMBIENT_CLEAR_ALL 4 /* arm64 Scalable Vector Extension controls */ /* Flag values must be kept in sync with ptrace NT_ARM_SVE interface */ #define PR_SVE_SET_VL 50 /* set task vector length */ # define PR_SVE_SET_VL_ONEXEC (1 << 18) /* defer effect until exec */ #define PR_SVE_GET_VL 51 /* get task vector length */ /* Bits common to PR_SVE_SET_VL and PR_SVE_GET_VL */ # define PR_SVE_VL_LEN_MASK 0xffff # define PR_SVE_VL_INHERIT (1 << 17) /* inherit across exec */ /* Per task speculation control */ #define PR_GET_SPECULATION_CTRL 52 #define PR_SET_SPECULATION_CTRL 53 /* Speculation control variants */ # define PR_SPEC_STORE_BYPASS 0 # define PR_SPEC_INDIRECT_BRANCH 1 # define PR_SPEC_L1D_FLUSH 2 /* Return and control values for PR_SET/GET_SPECULATION_CTRL */ # define PR_SPEC_NOT_AFFECTED 0 # define PR_SPEC_PRCTL (1UL << 0) # define PR_SPEC_ENABLE (1UL << 1) # define PR_SPEC_DISABLE (1UL << 2) # define PR_SPEC_FORCE_DISABLE (1UL << 3) # define PR_SPEC_DISABLE_NOEXEC (1UL << 4) /* Reset arm64 pointer authentication keys */ #define PR_PAC_RESET_KEYS 54 # define PR_PAC_APIAKEY (1UL << 0) # define PR_PAC_APIBKEY (1UL << 1) # define PR_PAC_APDAKEY (1UL << 2) # define PR_PAC_APDBKEY (1UL << 3) # define PR_PAC_APGAKEY (1UL << 4) /* Tagged user address controls for arm64 */ #define PR_SET_TAGGED_ADDR_CTRL 55 #define PR_GET_TAGGED_ADDR_CTRL 56 # define PR_TAGGED_ADDR_ENABLE (1UL << 0) /* MTE tag check fault modes */ # define PR_MTE_TCF_NONE 0UL # define PR_MTE_TCF_SYNC (1UL << 1) # define PR_MTE_TCF_ASYNC (1UL << 2) # define PR_MTE_TCF_MASK (PR_MTE_TCF_SYNC | PR_MTE_TCF_ASYNC) /* MTE tag inclusion mask */ # define PR_MTE_TAG_SHIFT 3 # define PR_MTE_TAG_MASK (0xffffUL << PR_MTE_TAG_SHIFT) /* Unused; kept only for source compatibility */ # define PR_MTE_TCF_SHIFT 1 /* Control reclaim behavior when allocating memory */ #define PR_SET_IO_FLUSHER 57 #define PR_GET_IO_FLUSHER 58 /* Dispatch syscalls to a userspace handler */ #define PR_SET_SYSCALL_USER_DISPATCH 59 # define PR_SYS_DISPATCH_OFF 0 # define PR_SYS_DISPATCH_ON 1 /* The control values for the user space selector when dispatch is enabled */ # define SYSCALL_DISPATCH_FILTER_ALLOW 0 # define SYSCALL_DISPATCH_FILTER_BLOCK 1 /* Set/get enabled arm64 pointer authentication keys */ #define PR_PAC_SET_ENABLED_KEYS 60 #define PR_PAC_GET_ENABLED_KEYS 61 /* Request the scheduler to share a core */ #define PR_SCHED_CORE 62 # define PR_SCHED_CORE_GET 0 # define PR_SCHED_CORE_CREATE 1 /* create unique core_sched cookie */ # define PR_SCHED_CORE_SHARE_TO 2 /* push core_sched cookie to pid */ # define PR_SCHED_CORE_SHARE_FROM 3 /* pull core_sched cookie to pid */ # define PR_SCHED_CORE_MAX 4 /* arm64 Scalable Matrix Extension controls */ /* Flag values must be in sync with SVE versions */ #define PR_SME_SET_VL 63 /* set task vector length */ # define PR_SME_SET_VL_ONEXEC (1 << 18) /* defer effect until exec */ #define PR_SME_GET_VL 64 /* get task vector length */ /* Bits common to PR_SME_SET_VL and PR_SME_GET_VL */ # define PR_SME_VL_LEN_MASK 0xffff # define PR_SME_VL_INHERIT (1 << 17) /* inherit across exec */ /* Memory deny write / execute */ #define PR_SET_MDWE 65 # define PR_MDWE_REFUSE_EXEC_GAIN (1UL << 0) # define PR_MDWE_NO_INHERIT (1UL << 1) #define PR_GET_MDWE 66 #define PR_SET_VMA 0x53564d41 # define PR_SET_VMA_ANON_NAME 0 #define PR_SET_MEMORY_MERGE 67 #define PR_GET_MEMORY_MERGE 68 /* PowerPC Dynamic Execution Control Register (DEXCR) controls */ #define PR_PPC_GET_DEXCR 72 #define PR_PPC_SET_DEXCR 73 /* DEXCR aspect to act on */ # define PR_PPC_DEXCR_SBHE 0 /* Speculative branch hint enable */ # define PR_PPC_DEXCR_IBRTPD 1 /* Indirect branch recurrent target prediction disable */ # define PR_PPC_DEXCR_SRAPD 2 /* Subroutine return address prediction disable */ # define PR_PPC_DEXCR_NPHIE 3 /* Non-privileged hash instruction enable */ /* Action to apply / return */ # define PR_PPC_DEXCR_CTRL_EDITABLE 0x1 /* Aspect can be modified with PR_PPC_SET_DEXCR */ # define PR_PPC_DEXCR_CTRL_SET 0x2 /* Set the aspect for this process */ # define PR_PPC_DEXCR_CTRL_CLEAR 0x4 /* Clear the aspect for this process */ # define PR_PPC_DEXCR_CTRL_SET_ONEXEC 0x8 /* Set the aspect on exec */ # define PR_PPC_DEXCR_CTRL_CLEAR_ONEXEC 0x10 /* Clear the aspect on exec */ # define PR_PPC_DEXCR_CTRL_MASK 0x1f #endif /* _LINUX_PRCTL_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]