PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _LINUX_FUTEX_H #define _LINUX_FUTEX_H #include <linux/types.h> /* Second argument to futex syscall */ #define FUTEX_WAIT 0 #define FUTEX_WAKE 1 #define FUTEX_FD 2 #define FUTEX_REQUEUE 3 #define FUTEX_CMP_REQUEUE 4 #define FUTEX_WAKE_OP 5 #define FUTEX_LOCK_PI 6 #define FUTEX_UNLOCK_PI 7 #define FUTEX_TRYLOCK_PI 8 #define FUTEX_WAIT_BITSET 9 #define FUTEX_WAKE_BITSET 10 #define FUTEX_WAIT_REQUEUE_PI 11 #define FUTEX_CMP_REQUEUE_PI 12 #define FUTEX_LOCK_PI2 13 #define FUTEX_PRIVATE_FLAG 128 #define FUTEX_CLOCK_REALTIME 256 #define FUTEX_CMD_MASK ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME) #define FUTEX_WAIT_PRIVATE (FUTEX_WAIT | FUTEX_PRIVATE_FLAG) #define FUTEX_WAKE_PRIVATE (FUTEX_WAKE | FUTEX_PRIVATE_FLAG) #define FUTEX_REQUEUE_PRIVATE (FUTEX_REQUEUE | FUTEX_PRIVATE_FLAG) #define FUTEX_CMP_REQUEUE_PRIVATE (FUTEX_CMP_REQUEUE | FUTEX_PRIVATE_FLAG) #define FUTEX_WAKE_OP_PRIVATE (FUTEX_WAKE_OP | FUTEX_PRIVATE_FLAG) #define FUTEX_LOCK_PI_PRIVATE (FUTEX_LOCK_PI | FUTEX_PRIVATE_FLAG) #define FUTEX_LOCK_PI2_PRIVATE (FUTEX_LOCK_PI2 | FUTEX_PRIVATE_FLAG) #define FUTEX_UNLOCK_PI_PRIVATE (FUTEX_UNLOCK_PI | FUTEX_PRIVATE_FLAG) #define FUTEX_TRYLOCK_PI_PRIVATE (FUTEX_TRYLOCK_PI | FUTEX_PRIVATE_FLAG) #define FUTEX_WAIT_BITSET_PRIVATE (FUTEX_WAIT_BITSET | FUTEX_PRIVATE_FLAG) #define FUTEX_WAKE_BITSET_PRIVATE (FUTEX_WAKE_BITSET | FUTEX_PRIVATE_FLAG) #define FUTEX_WAIT_REQUEUE_PI_PRIVATE (FUTEX_WAIT_REQUEUE_PI | \ FUTEX_PRIVATE_FLAG) #define FUTEX_CMP_REQUEUE_PI_PRIVATE (FUTEX_CMP_REQUEUE_PI | \ FUTEX_PRIVATE_FLAG) /* * Flags for futex2 syscalls. * * NOTE: these are not pure flags, they can also be seen as: * * union { * u32 flags; * struct { * u32 size : 2, * numa : 1, * : 4, * private : 1; * }; * }; */ #define FUTEX2_SIZE_U8 0x00 #define FUTEX2_SIZE_U16 0x01 #define FUTEX2_SIZE_U32 0x02 #define FUTEX2_SIZE_U64 0x03 #define FUTEX2_NUMA 0x04 /* 0x08 */ /* 0x10 */ /* 0x20 */ /* 0x40 */ #define FUTEX2_PRIVATE FUTEX_PRIVATE_FLAG #define FUTEX2_SIZE_MASK 0x03 /* do not use */ #define FUTEX_32 FUTEX2_SIZE_U32 /* historical accident :-( */ /* * Max numbers of elements in a futex_waitv array */ #define FUTEX_WAITV_MAX 128 /** * struct futex_waitv - A waiter for vectorized wait * @val: Expected value at uaddr * @uaddr: User address to wait on * @flags: Flags for this waiter * @__reserved: Reserved member to preserve data alignment. Should be 0. */ struct futex_waitv { __u64 val; __u64 uaddr; __u32 flags; __u32 __reserved; }; /* * Support for robust futexes: the kernel cleans up held futexes at * thread exit time. */ /* * Per-lock list entry - embedded in user-space locks, somewhere close * to the futex field. (Note: user-space uses a double-linked list to * achieve O(1) list add and remove, but the kernel only needs to know * about the forward link) * * NOTE: this structure is part of the syscall ABI, and must not be * changed. */ struct robust_list { struct robust_list *next; }; /* * Per-thread list head: * * NOTE: this structure is part of the syscall ABI, and must only be * changed if the change is first communicated with the glibc folks. * (When an incompatible change is done, we'll increase the structure * size, which glibc will detect) */ struct robust_list_head { /* * The head of the list. Points back to itself if empty: */ struct robust_list list; /* * This relative offset is set by user-space, it gives the kernel * the relative position of the futex field to examine. This way * we keep userspace flexible, to freely shape its data-structure, * without hardcoding any particular offset into the kernel: */ long futex_offset; /* * The death of the thread may race with userspace setting * up a lock's links. So to handle this race, userspace first * sets this field to the address of the to-be-taken lock, * then does the lock acquire, and then adds itself to the * list, and then clears this field. Hence the kernel will * always have full knowledge of all locks that the thread * _might_ have taken. We check the owner TID in any case, * so only truly owned locks will be handled. */ struct robust_list *list_op_pending; }; /* * Are there any waiters for this robust futex: */ #define FUTEX_WAITERS 0x80000000 /* * The kernel signals via this bit that a thread holding a futex * has exited without unlocking the futex. The kernel also does * a FUTEX_WAKE on such futexes, after setting the bit, to wake * up any possible waiters: */ #define FUTEX_OWNER_DIED 0x40000000 /* * The rest of the robust-futex field is for the TID: */ #define FUTEX_TID_MASK 0x3fffffff /* * This limit protects against a deliberately circular list. * (Not worth introducing an rlimit for it) */ #define ROBUST_LIST_LIMIT 2048 /* * bitset with all bits set for the FUTEX_xxx_BITSET OPs to request a * match of any bit. */ #define FUTEX_BITSET_MATCH_ANY 0xffffffff #define FUTEX_OP_SET 0 /* *(int *)UADDR2 = OPARG; */ #define FUTEX_OP_ADD 1 /* *(int *)UADDR2 += OPARG; */ #define FUTEX_OP_OR 2 /* *(int *)UADDR2 |= OPARG; */ #define FUTEX_OP_ANDN 3 /* *(int *)UADDR2 &= ~OPARG; */ #define FUTEX_OP_XOR 4 /* *(int *)UADDR2 ^= OPARG; */ #define FUTEX_OP_OPARG_SHIFT 8 /* Use (1 << OPARG) instead of OPARG. */ #define FUTEX_OP_CMP_EQ 0 /* if (oldval == CMPARG) wake */ #define FUTEX_OP_CMP_NE 1 /* if (oldval != CMPARG) wake */ #define FUTEX_OP_CMP_LT 2 /* if (oldval < CMPARG) wake */ #define FUTEX_OP_CMP_LE 3 /* if (oldval <= CMPARG) wake */ #define FUTEX_OP_CMP_GT 4 /* if (oldval > CMPARG) wake */ #define FUTEX_OP_CMP_GE 5 /* if (oldval >= CMPARG) wake */ /* FUTEX_WAKE_OP will perform atomically int oldval = *(int *)UADDR2; *(int *)UADDR2 = oldval OP OPARG; if (oldval CMP CMPARG) wake UADDR2; */ #define FUTEX_OP(op, oparg, cmp, cmparg) \ (((op & 0xf) << 28) | ((cmp & 0xf) << 24) \ | ((oparg & 0xfff) << 12) | (cmparg & 0xfff)) #endif /* _LINUX_FUTEX_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]