PATH:
usr
/
include
/
linux
/* SPDX-License-Identifier: LGPL-2.1 WITH Linux-syscall-note */ /* Copyright(c) 2019 Intel Corporation. All rights rsvd. */ #ifndef _USR_IDXD_H_ #define _USR_IDXD_H_ #include <stdint.h> /* Driver command error status */ enum idxd_scmd_stat { IDXD_SCMD_DEV_ENABLED = 0x80000010, IDXD_SCMD_DEV_NOT_ENABLED = 0x80000020, IDXD_SCMD_WQ_ENABLED = 0x80000021, IDXD_SCMD_DEV_DMA_ERR = 0x80020000, IDXD_SCMD_WQ_NO_GRP = 0x80030000, IDXD_SCMD_WQ_NO_NAME = 0x80040000, IDXD_SCMD_WQ_NO_SVM = 0x80050000, IDXD_SCMD_WQ_NO_THRESH = 0x80060000, IDXD_SCMD_WQ_PORTAL_ERR = 0x80070000, IDXD_SCMD_WQ_RES_ALLOC_ERR = 0x80080000, IDXD_SCMD_PERCPU_ERR = 0x80090000, IDXD_SCMD_DMA_CHAN_ERR = 0x800a0000, IDXD_SCMD_CDEV_ERR = 0x800b0000, IDXD_SCMD_WQ_NO_SWQ_SUPPORT = 0x800c0000, IDXD_SCMD_WQ_NONE_CONFIGURED = 0x800d0000, IDXD_SCMD_WQ_NO_SIZE = 0x800e0000, IDXD_SCMD_WQ_NO_PRIV = 0x800f0000, IDXD_SCMD_WQ_IRQ_ERR = 0x80100000, IDXD_SCMD_WQ_USER_NO_IOMMU = 0x80110000, }; #define IDXD_SCMD_SOFTERR_MASK 0x80000000 #define IDXD_SCMD_SOFTERR_SHIFT 16 /* Descriptor flags */ #define IDXD_OP_FLAG_FENCE 0x0001 #define IDXD_OP_FLAG_BOF 0x0002 #define IDXD_OP_FLAG_CRAV 0x0004 #define IDXD_OP_FLAG_RCR 0x0008 #define IDXD_OP_FLAG_RCI 0x0010 #define IDXD_OP_FLAG_CRSTS 0x0020 #define IDXD_OP_FLAG_CR 0x0080 #define IDXD_OP_FLAG_CC 0x0100 #define IDXD_OP_FLAG_ADDR1_TCS 0x0200 #define IDXD_OP_FLAG_ADDR2_TCS 0x0400 #define IDXD_OP_FLAG_ADDR3_TCS 0x0800 #define IDXD_OP_FLAG_CR_TCS 0x1000 #define IDXD_OP_FLAG_STORD 0x2000 #define IDXD_OP_FLAG_DRDBK 0x4000 #define IDXD_OP_FLAG_DSTS 0x8000 /* IAX */ #define IDXD_OP_FLAG_RD_SRC2_AECS 0x010000 #define IDXD_OP_FLAG_RD_SRC2_2ND 0x020000 #define IDXD_OP_FLAG_WR_SRC2_AECS_COMP 0x040000 #define IDXD_OP_FLAG_WR_SRC2_AECS_OVFL 0x080000 #define IDXD_OP_FLAG_SRC2_STS 0x100000 #define IDXD_OP_FLAG_CRC_RFC3720 0x200000 /* Opcode */ enum dsa_opcode { DSA_OPCODE_NOOP = 0, DSA_OPCODE_BATCH, DSA_OPCODE_DRAIN, DSA_OPCODE_MEMMOVE, DSA_OPCODE_MEMFILL, DSA_OPCODE_COMPARE, DSA_OPCODE_COMPVAL, DSA_OPCODE_CR_DELTA, DSA_OPCODE_AP_DELTA, DSA_OPCODE_DUALCAST, DSA_OPCODE_CRCGEN = 0x10, DSA_OPCODE_COPY_CRC, DSA_OPCODE_DIF_CHECK, DSA_OPCODE_DIF_INS, DSA_OPCODE_DIF_STRP, DSA_OPCODE_DIF_UPDT, DSA_OPCODE_CFLUSH = 0x20, }; enum iax_opcode { IAX_OPCODE_NOOP = 0, IAX_OPCODE_DRAIN = 2, IAX_OPCODE_MEMMOVE, IAX_OPCODE_DECOMPRESS = 0x42, IAX_OPCODE_COMPRESS, IAX_OPCODE_CRC64, IAX_OPCODE_ZERO_DECOMP_32 = 0x48, IAX_OPCODE_ZERO_DECOMP_16, IAX_OPCODE_ZERO_COMP_32 = 0x4c, IAX_OPCODE_ZERO_COMP_16, IAX_OPCODE_SCAN = 0x50, IAX_OPCODE_SET_MEMBER, IAX_OPCODE_EXTRACT, IAX_OPCODE_SELECT, IAX_OPCODE_RLE_BURST, IAX_OPCODE_FIND_UNIQUE, IAX_OPCODE_EXPAND, }; /* Completion record status */ enum dsa_completion_status { DSA_COMP_NONE = 0, DSA_COMP_SUCCESS, DSA_COMP_SUCCESS_PRED, DSA_COMP_PAGE_FAULT_NOBOF, DSA_COMP_PAGE_FAULT_IR, DSA_COMP_BATCH_FAIL, DSA_COMP_BATCH_PAGE_FAULT, DSA_COMP_DR_OFFSET_NOINC, DSA_COMP_DR_OFFSET_ERANGE, DSA_COMP_DIF_ERR, DSA_COMP_BAD_OPCODE = 0x10, DSA_COMP_INVALID_FLAGS, DSA_COMP_NOZERO_RESERVE, DSA_COMP_XFER_ERANGE, DSA_COMP_DESC_CNT_ERANGE, DSA_COMP_DR_ERANGE, DSA_COMP_OVERLAP_BUFFERS, DSA_COMP_DCAST_ERR, DSA_COMP_DESCLIST_ALIGN, DSA_COMP_INT_HANDLE_INVAL, DSA_COMP_CRA_XLAT, DSA_COMP_CRA_ALIGN, DSA_COMP_ADDR_ALIGN, DSA_COMP_PRIV_BAD, DSA_COMP_TRAFFIC_CLASS_CONF, DSA_COMP_PFAULT_RDBA, DSA_COMP_HW_ERR1, DSA_COMP_HW_ERR_DRB, DSA_COMP_TRANSLATION_FAIL, }; enum iax_completion_status { IAX_COMP_NONE = 0, IAX_COMP_SUCCESS, IAX_COMP_PAGE_FAULT_IR = 0x04, IAX_COMP_ANALYTICS_ERROR = 0x0a, IAX_COMP_OUTBUF_OVERFLOW, IAX_COMP_BAD_OPCODE = 0x10, IAX_COMP_INVALID_FLAGS, IAX_COMP_NOZERO_RESERVE, IAX_COMP_INVALID_SIZE, IAX_COMP_OVERLAP_BUFFERS = 0x16, IAX_COMP_INT_HANDLE_INVAL = 0x19, IAX_COMP_CRA_XLAT, IAX_COMP_CRA_ALIGN, IAX_COMP_ADDR_ALIGN, IAX_COMP_PRIV_BAD, IAX_COMP_TRAFFIC_CLASS_CONF, IAX_COMP_PFAULT_RDBA, IAX_COMP_HW_ERR1, IAX_COMP_HW_ERR_DRB, IAX_COMP_TRANSLATION_FAIL, IAX_COMP_PRS_TIMEOUT, IAX_COMP_WATCHDOG, IAX_COMP_INVALID_COMP_FLAG = 0x30, IAX_COMP_INVALID_FILTER_FLAG, IAX_COMP_INVALID_INPUT_SIZE, IAX_COMP_INVALID_NUM_ELEMS, IAX_COMP_INVALID_SRC1_WIDTH, IAX_COMP_INVALID_INVERT_OUT, }; #define DSA_COMP_STATUS_MASK 0x7f #define DSA_COMP_STATUS_WRITE 0x80 struct dsa_hw_desc { uint32_t pasid:20; uint32_t rsvd:11; uint32_t priv:1; uint32_t flags:24; uint32_t opcode:8; uint64_t completion_addr; union { uint64_t src_addr; uint64_t rdback_addr; uint64_t pattern; uint64_t desc_list_addr; }; union { uint64_t dst_addr; uint64_t rdback_addr2; uint64_t src2_addr; uint64_t comp_pattern; }; union { uint32_t xfer_size; uint32_t desc_count; }; uint16_t int_handle; uint16_t rsvd1; union { uint8_t expected_res; /* create delta record */ struct { uint64_t delta_addr; uint32_t max_delta_size; uint32_t delt_rsvd; uint8_t expected_res_mask; }; uint32_t delta_rec_size; uint64_t dest2; /* CRC */ struct { uint32_t crc_seed; uint32_t crc_rsvd; uint64_t seed_addr; }; /* DIF check or strip */ struct { uint8_t src_dif_flags; uint8_t dif_chk_res; uint8_t dif_chk_flags; uint8_t dif_chk_res2[5]; uint32_t chk_ref_tag_seed; uint16_t chk_app_tag_mask; uint16_t chk_app_tag_seed; }; /* DIF insert */ struct { uint8_t dif_ins_res; uint8_t dest_dif_flag; uint8_t dif_ins_flags; uint8_t dif_ins_res2[13]; uint32_t ins_ref_tag_seed; uint16_t ins_app_tag_mask; uint16_t ins_app_tag_seed; }; /* DIF update */ struct { uint8_t src_upd_flags; uint8_t upd_dest_flags; uint8_t dif_upd_flags; uint8_t dif_upd_res[5]; uint32_t src_ref_tag_seed; uint16_t src_app_tag_mask; uint16_t src_app_tag_seed; uint32_t dest_ref_tag_seed; uint16_t dest_app_tag_mask; uint16_t dest_app_tag_seed; }; uint8_t op_specific[24]; }; } __attribute__((packed)); struct iax_hw_desc { uint32_t pasid:20; uint32_t rsvd:11; uint32_t priv:1; uint32_t flags:24; uint32_t opcode:8; uint64_t completion_addr; uint64_t src1_addr; uint64_t dst_addr; uint32_t src1_size; uint16_t int_handle; union { uint16_t compr_flags; uint16_t decompr_flags; }; uint64_t src2_addr; uint32_t max_dst_size; uint32_t src2_size; uint32_t filter_flags; uint32_t num_inputs; } __attribute__((packed)); struct dsa_raw_desc { uint64_t field[8]; } __attribute__((packed)); /* * The status field will be modified by hardware, therefore it should be * __volatile__ and prevent the compiler from optimize the read. */ struct dsa_completion_record { __volatile__ uint8_t status; union { uint8_t result; uint8_t dif_status; }; uint16_t rsvd; uint32_t bytes_completed; uint64_t fault_addr; union { /* common record */ struct { uint32_t invalid_flags:24; uint32_t rsvd2:8; }; uint32_t delta_rec_size; uint64_t crc_val; /* DIF check & strip */ struct { uint32_t dif_chk_ref_tag; uint16_t dif_chk_app_tag_mask; uint16_t dif_chk_app_tag; }; /* DIF insert */ struct { uint64_t dif_ins_res; uint32_t dif_ins_ref_tag; uint16_t dif_ins_app_tag_mask; uint16_t dif_ins_app_tag; }; /* DIF update */ struct { uint32_t dif_upd_src_ref_tag; uint16_t dif_upd_src_app_tag_mask; uint16_t dif_upd_src_app_tag; uint32_t dif_upd_dest_ref_tag; uint16_t dif_upd_dest_app_tag_mask; uint16_t dif_upd_dest_app_tag; }; uint8_t op_specific[16]; }; } __attribute__((packed)); struct dsa_raw_completion_record { uint64_t field[4]; } __attribute__((packed)); struct iax_completion_record { __volatile__ uint8_t status; uint8_t error_code; uint16_t rsvd; uint32_t bytes_completed; uint64_t fault_addr; uint32_t invalid_flags; uint32_t rsvd2; uint32_t output_size; uint8_t output_bits; uint8_t rsvd3; uint16_t xor_csum; uint32_t crc; uint32_t min; uint32_t max; uint32_t sum; uint64_t rsvd4[2]; } __attribute__((packed)); struct iax_raw_completion_record { uint64_t field[8]; } __attribute__((packed)); #endif
[+]
..
[-] keyctl.h
[edit]
[-] nilfs2_ondisk.h
[edit]
[-] if_tun.h
[edit]
[+]
hsi
[-] random.h
[edit]
[-] smiapp.h
[edit]
[-] prctl.h
[edit]
[-] kfd_ioctl.h
[edit]
[-] qrtr.h
[edit]
[-] tiocl.h
[edit]
[-] cciss_ioctl.h
[edit]
[+]
usb
[-] dlm_netlink.h
[edit]
[-] nsfs.h
[edit]
[-] isdn_ppp.h
[edit]
[-] vmcore.h
[edit]
[+]
cifs
[-] ncsi.h
[edit]
[-] atm_zatm.h
[edit]
[-] reboot.h
[edit]
[-] shm.h
[edit]
[-] userio.h
[edit]
[-] fpga-dfl.h
[edit]
[-] hdreg.h
[edit]
[-] netfilter_arp.h
[edit]
[-] media.h
[edit]
[-] netrom.h
[edit]
[-] ppp_defs.h
[edit]
[-] iso_fs.h
[edit]
[-] msdos_fs.h
[edit]
[-] atalk.h
[edit]
[-] userfaultfd.h
[edit]
[-] mmtimer.h
[edit]
[-] seg6_genl.h
[edit]
[+]
netfilter_ipv6
[-] atmmpc.h
[edit]
[-] connector.h
[edit]
[-] coff.h
[edit]
[-] aio_abi.h
[edit]
[-] mptcp.h
[edit]
[-] gigaset_dev.h
[edit]
[-] scif_ioctl.h
[edit]
[-] hiddev.h
[edit]
[-] netconf.h
[edit]
[-] if_fddi.h
[edit]
[-] if_slip.h
[edit]
[-] isdnif.h
[edit]
[-] nfs2.h
[edit]
[-] bpfilter.h
[edit]
[-] nfs4_mount.h
[edit]
[-] mroute.h
[edit]
[-] bcache.h
[edit]
[-] if_arcnet.h
[edit]
[-] ivtv.h
[edit]
[-] virtio_fs.h
[edit]
[-] cn_proc.h
[edit]
[-] version.h
[edit]
[-] hdlcdrv.h
[edit]
[-] sysinfo.h
[edit]
[-] mrp_bridge.h
[edit]
[-] ipmi_bmc.h
[edit]
[-] tipc_sockets_diag.h
[edit]
[-] membarrier.h
[edit]
[-] gfs2_ondisk.h
[edit]
[-] fdreg.h
[edit]
[-] cryptouser.h
[edit]
[-] vdpa.h
[edit]
[-] netlink.h
[edit]
[-] if_link.h
[edit]
[-] psample.h
[edit]
[-] sound.h
[edit]
[-] virtio_console.h
[edit]
[-] ethtool.h
[edit]
[-] kvm.h
[edit]
[-] atmbr2684.h
[edit]
[-] msg.h
[edit]
[-] elf-fdpic.h
[edit]
[-] arcfb.h
[edit]
[-] if_eql.h
[edit]
[-] mqueue.h
[edit]
[-] isdn.h
[edit]
[-] hidraw.h
[edit]
[-] virtio_types.h
[edit]
[-] openvswitch.h
[edit]
[-] timerfd.h
[edit]
[-] synclink.h
[edit]
[-] map_to_7segment.h
[edit]
[-] nfs_fs.h
[edit]
[-] neighbour.h
[edit]
[-] ptp_clock.h
[edit]
[-] dcbnl.h
[edit]
[-] tipc_netlink.h
[edit]
[-] max2175.h
[edit]
[-] videodev2.h
[edit]
[-] nfs.h
[edit]
[-] phantom.h
[edit]
[-] joystick.h
[edit]
[-] nvram.h
[edit]
[-] fanotify.h
[edit]
[-] ptrace.h
[edit]
[-] net.h
[edit]
[-] screen_info.h
[edit]
[-] psci.h
[edit]
[-] binfmts.h
[edit]
[-] batadv_packet.h
[edit]
[-] zorro.h
[edit]
[-] sock_diag.h
[edit]
[-] btrfs_tree.h
[edit]
[-] atm_eni.h
[edit]
[-] uhid.h
[edit]
[-] atmlec.h
[edit]
[-] a.out.h
[edit]
[-] blkpg.h
[edit]
[-] igmp.h
[edit]
[-] dlm_device.h
[edit]
[-] if_vlan.h
[edit]
[-] netfilter_bridge.h
[edit]
[-] fib_rules.h
[edit]
[+]
wimax
[-] virtio_rng.h
[edit]
[-] if_plip.h
[edit]
[-] dlm.h
[edit]
[-] times.h
[edit]
[-] lwtunnel.h
[edit]
[-] rio_cm_cdev.h
[edit]
[-] atmapi.h
[edit]
[+]
spi
[-] virtio_blk.h
[edit]
[-] ipmi_msgdefs.h
[edit]
[-] virtio_pci.h
[edit]
[-] uio.h
[edit]
[-] cdrom.h
[edit]
[-] n_r3964.h
[edit]
[+]
byteorder
[-] isst_if.h
[edit]
[-] v4l2-controls.h
[edit]
[-] string.h
[edit]
[-] fsmap.h
[edit]
[-] tty_flags.h
[edit]
[-] if_ltalk.h
[edit]
[-] posix_acl.h
[edit]
[+]
sched
[-] idxd.h
[edit]
[-] mic_common.h
[edit]
[-] errno.h
[edit]
[-] swab.h
[edit]
[-] hdlc.h
[edit]
[-] types.h
[edit]
[-] rseq.h
[edit]
[-] libc-compat.h
[edit]
[+]
nfsd
[+]
netfilter
[-] chio.h
[edit]
[-] net_dropmon.h
[edit]
[-] cyclades.h
[edit]
[-] personality.h
[edit]
[-] sed-opal.h
[edit]
[-] ppp-ioctl.h
[edit]
[-] gpio.h
[edit]
[+]
genwqe
[-] unistd.h
[edit]
[-] ife.h
[edit]
[-] sdla.h
[edit]
[-] reiserfs_fs.h
[edit]
[-] if_pppox.h
[edit]
[-] if_fc.h
[edit]
[-] mic_ioctl.h
[edit]
[-] route.h
[edit]
[-] i2o-dev.h
[edit]
[-] const.h
[edit]
[-] posix_acl_xattr.h
[edit]
[-] atmppp.h
[edit]
[-] elfcore.h
[edit]
[-] pci_regs.h
[edit]
[-] lirc.h
[edit]
[-] blkzoned.h
[edit]
[-] serial_reg.h
[edit]
[-] serial_core.h
[edit]
[-] affs_hardblocks.h
[edit]
[-] phonet.h
[edit]
[-] oom.h
[edit]
[-] atmsvc.h
[edit]
[-] patchkey.h
[edit]
[-] baycom.h
[edit]
[-] ivtvfb.h
[edit]
[-] sctp.h
[edit]
[-] cfm_bridge.h
[edit]
[-] radeonfb.h
[edit]
[-] ila.h
[edit]
[-] udf_fs_i.h
[edit]
[-] udp.h
[edit]
[-] minix_fs.h
[edit]
[-] edd.h
[edit]
[-] gsmmux.h
[edit]
[-] signalfd.h
[edit]
[-] omapfb.h
[edit]
[-] bpf_common.h
[edit]
[-] x25.h
[edit]
[-] nfs_mount.h
[edit]
[-] dma-buf.h
[edit]
[-] if_cablemodem.h
[edit]
[-] zorro_ids.h
[edit]
[-] virtio_crypto.h
[edit]
[-] netfilter_decnet.h
[edit]
[-] errqueue.h
[edit]
[-] virtio_iommu.h
[edit]
[-] rfkill.h
[edit]
[-] kcov.h
[edit]
[-] audit.h
[edit]
[-] perf_event.h
[edit]
[-] batman_adv.h
[edit]
[-] fd.h
[edit]
[-] ip6_tunnel.h
[edit]
[-] dlmconstants.h
[edit]
[-] virtio_bt.h
[edit]
[-] virtio_scsi.h
[edit]
[-] nfs4.h
[edit]
[-] nubus.h
[edit]
[+]
can
[-] coda.h
[edit]
[-] vsockmon.h
[edit]
[-] major.h
[edit]
[-] i2c.h
[edit]
[-] fou.h
[edit]
[-] if_hippi.h
[edit]
[+]
netfilter_ipv4
[-] elf-em.h
[edit]
[-] reiserfs_xattr.h
[edit]
[-] utsname.h
[edit]
[-] devlink.h
[edit]
[-] fuse.h
[edit]
[-] wimax.h
[edit]
[-] kernel-page-flags.h
[edit]
[-] ipv6.h
[edit]
[+]
sunrpc
[-] tdx-guest.h
[edit]
[-] virtio_gpu.h
[edit]
[-] vbox_vmmdev_types.h
[edit]
[-] capi.h
[edit]
[-] ppdev.h
[edit]
[-] dlm_plock.h
[edit]
[-] kernelcapi.h
[edit]
[-] if_addr.h
[edit]
[-] dn.h
[edit]
[-] hash_info.h
[edit]
[-] ndctl.h
[edit]
[-] rio_mport_cdev.h
[edit]
[-] netfilter_ipv6.h
[edit]
[-] uuid.h
[edit]
[-] virtio_9p.h
[edit]
[-] uvcvideo.h
[edit]
[-] suspend_ioctls.h
[edit]
[-] vhost_types.h
[edit]
[-] net_namespace.h
[edit]
[-] blktrace_api.h
[edit]
[-] virtio_mmio.h
[edit]
[-] io_uring.h
[edit]
[-] atmioc.h
[edit]
[-] time.h
[edit]
[-] bpf_perf_event.h
[edit]
[-] virtio_snd.h
[edit]
[-] inotify.h
[edit]
[-] virtio_balloon.h
[edit]
[+]
dvb
[-] vfio_ccw.h
[edit]
[-] posix_types.h
[edit]
[-] erspan.h
[edit]
[-] coda_psdev.h
[edit]
[-] kernel.h
[edit]
[-] ipmi_ssif_bmc.h
[edit]
[-] xilinx-v4l2-controls.h
[edit]
[-] v4l2-mediabus.h
[edit]
[-] xattr.h
[edit]
[-] nbd.h
[edit]
[-] dqblk_xfs.h
[edit]
[+]
hdlc
[-] l2tp.h
[edit]
[-] nfc.h
[edit]
[-] if_frad.h
[edit]
[-] nfs3.h
[edit]
[-] cgroupstats.h
[edit]
[-] tls.h
[edit]
[-] pmu.h
[edit]
[-] cec-funcs.h
[edit]
[-] stat.h
[edit]
[-] atm_he.h
[edit]
[-] gameport.h
[edit]
[-] limits.h
[edit]
[-] flat.h
[edit]
[-] raw.h
[edit]
[-] cm4000_cs.h
[edit]
[-] iommu.h
[edit]
[-] net_tstamp.h
[edit]
[-] kcm.h
[edit]
[-] i2c-dev.h
[edit]
[-] virtio_vsock.h
[edit]
[-] v4l2-common.h
[edit]
[-] arm_sdei.h
[edit]
[-] kdev_t.h
[edit]
[-] usbip.h
[edit]
[-] stddef.h
[edit]
[-] bpqether.h
[edit]
[-] auxvec.h
[edit]
[-] if_xdp.h
[edit]
[-] qnx4_fs.h
[edit]
[-] openat2.h
[edit]
[-] cuda.h
[edit]
[-] icmp.h
[edit]
[+]
mmc
[-] seg6.h
[edit]
[-] matroxfb.h
[edit]
[-] meye.h
[edit]
[+]
android
[-] usbdevice_fs.h
[edit]
[-] xfrm.h
[edit]
[-] snmp.h
[edit]
[-] efs_fs_sb.h
[edit]
[-] lightnvm.h
[edit]
[-] taskstats.h
[edit]
[-] auto_fs.h
[edit]
[-] ipc.h
[edit]
[-] un.h
[edit]
[-] hid.h
[edit]
[-] btf.h
[edit]
[-] if_bridge.h
[edit]
[-] ethtool_netlink.h
[edit]
[-] mount.h
[edit]
[-] ip.h
[edit]
[-] if_alg.h
[edit]
[-] ipmi.h
[edit]
[-] kd.h
[edit]
[-] atmclip.h
[edit]
[-] seccomp.h
[edit]
[-] gen_stats.h
[edit]
[-] adb.h
[edit]
[-] firewire-constants.h
[edit]
[-] hyperv.h
[edit]
[-] lp.h
[edit]
[-] if_addrlabel.h
[edit]
[-] in.h
[edit]
[-] wanrouter.h
[edit]
[-] sockios.h
[edit]
[-] mei.h
[edit]
[+]
isdn
[-] mpls_iptunnel.h
[edit]
[-] uleds.h
[edit]
[-] atm_tcp.h
[edit]
[+]
tc_ematch
[-] dm-log-userspace.h
[edit]
[-] seg6_iptunnel.h
[edit]
[-] tcp.h
[edit]
[-] time_types.h
[edit]
[-] atm.h
[edit]
[-] magic.h
[edit]
[-] cycx_cfm.h
[edit]
[-] thermal.h
[edit]
[-] if.h
[edit]
[-] pr.h
[edit]
[+]
netfilter_arp
[-] mempolicy.h
[edit]
[-] securebits.h
[edit]
[-] wmi.h
[edit]
[-] keyboard.h
[edit]
[-] elf.h
[edit]
[-] pfkeyv2.h
[edit]
[-] tipc_config.h
[edit]
[-] veth.h
[edit]
[-] poll.h
[edit]
[-] in_route.h
[edit]
[+]
raid
[-] rxrpc.h
[edit]
[-] vtpm_proxy.h
[edit]
[-] kfd_sysfs.h
[edit]
[-] inet_diag.h
[edit]
[-] pg.h
[edit]
[-] if_infiniband.h
[edit]
[-] acct.h
[edit]
[-] input.h
[edit]
[-] unix_diag.h
[edit]
[-] sem.h
[edit]
[-] rpmsg.h
[edit]
[-] hsr_netlink.h
[edit]
[-] gtp.h
[edit]
[-] if_team.h
[edit]
[-] vbox_err.h
[edit]
[-] utime.h
[edit]
[-] vboxguest.h
[edit]
[-] pci.h
[edit]
[-] fs.h
[edit]
[-] atm_idt77105.h
[edit]
[-] toshiba.h
[edit]
[-] adfs_fs.h
[edit]
[-] switchtec_ioctl.h
[edit]
[-] auto_dev-ioctl.h
[edit]
[-] kexec.h
[edit]
[-] agpgart.h
[edit]
[-] if_bonding.h
[edit]
[-] bpf.h
[edit]
[-] fadvise.h
[edit]
[-] vfio.h
[edit]
[-] pktcdvd.h
[edit]
[-] sonet.h
[edit]
[-] if_ether.h
[edit]
[-] parport.h
[edit]
[-] uinput.h
[edit]
[-] pcitest.h
[edit]
[-] rtnetlink.h
[edit]
[-] cramfs_fs.h
[edit]
[-] nilfs2_api.h
[edit]
[-] coresight-stm.h
[edit]
[-] loop.h
[edit]
[-] fsl_hypervisor.h
[edit]
[+]
caif
[-] watchdog.h
[edit]
[-] bfs_fs.h
[edit]
[-] rose.h
[edit]
[-] resource.h
[edit]
[-] module.h
[edit]
[-] ppp-comp.h
[edit]
[+]
iio
[-] ax25.h
[edit]
[-] mroute6.h
[edit]
[-] hpet.h
[edit]
[-] irqnr.h
[edit]
[-] smc_diag.h
[edit]
[-] nfsacl.h
[edit]
[-] netdevice.h
[edit]
[-] signal.h
[edit]
[-] kvm_para.h
[edit]
[-] vfio_zdev.h
[edit]
[-] pfrut.h
[edit]
[-] xdp_diag.h
[edit]
[-] if_tunnel.h
[edit]
[-] bt-bmc.h
[edit]
[-] close_range.h
[edit]
[-] rds.h
[edit]
[-] fiemap.h
[edit]
[-] cec.h
[edit]
[-] llc.h
[edit]
[-] falloc.h
[edit]
[-] dm-ioctl.h
[edit]
[-] hysdn_if.h
[edit]
[-] qemu_fw_cfg.h
[edit]
[-] nvme_ioctl.h
[edit]
[-] bsg.h
[edit]
[-] mii.h
[edit]
[-] eventpoll.h
[edit]
[-] omap3isp.h
[edit]
[-] jffs2.h
[edit]
[-] can.h
[edit]
[-] packet_diag.h
[edit]
[-] netlink_diag.h
[edit]
[-] pps.h
[edit]
[-] atmsap.h
[edit]
[-] am437x-vpfe.h
[edit]
[-] ioctl.h
[edit]
[-] termios.h
[edit]
[-] scc.h
[edit]
[-] kcmp.h
[edit]
[-] soundcard.h
[edit]
[-] timex.h
[edit]
[-] virtio_config.h
[edit]
[-] ipsec.h
[edit]
[-] firewire-cdev.h
[edit]
[-] hw_breakpoint.h
[edit]
[-] serial.h
[edit]
[-] vt.h
[edit]
[-] wait.h
[edit]
[-] ipv6_route.h
[edit]
[-] sysctl.h
[edit]
[-] genetlink.h
[edit]
[-] filter.h
[edit]
[-] vhost.h
[edit]
[-] mtio.h
[edit]
[-] sonypi.h
[edit]
[-] if_ppp.h
[edit]
[-] target_core_user.h
[edit]
[-] atmdev.h
[edit]
[-] input-event-codes.h
[edit]
[-] nexthop.h
[edit]
[+]
netfilter_bridge
[-] if_packet.h
[edit]
[-] mdio.h
[edit]
[-] serio.h
[edit]
[-] capability.h
[edit]
[-] v4l2-dv-timings.h
[edit]
[-] psp-sev.h
[edit]
[-] virtio_mem.h
[edit]
[-] param.h
[edit]
[-] tcp_metrics.h
[edit]
[-] sev-guest.h
[edit]
[-] virtio_input.h
[edit]
[-] sched.h
[edit]
[-] cciss_defs.h
[edit]
[-] vm_sockets.h
[edit]
[-] quota.h
[edit]
[-] atm_nicstar.h
[edit]
[-] pkt_cls.h
[edit]
[-] pkt_sched.h
[edit]
[+]
tc_act
[-] bcm933xx_hcs.h
[edit]
[-] nfs_idmap.h
[edit]
[-] b1lli.h
[edit]
[-] aspeed-lpc-ctrl.h
[edit]
[-] mpls.h
[edit]
[-] if_x25.h
[edit]
[-] virtio_net.h
[edit]
[-] btrfs.h
[edit]
[-] nitro_enclaves.h
[edit]
[-] sync_file.h
[edit]
[-] seg6_local.h
[edit]
[-] v4l2-subdev.h
[edit]
[-] isdn_divertif.h
[edit]
[-] apm_bios.h
[edit]
[-] smc.h
[edit]
[-] in6.h
[edit]
[-] if_pppol2tp.h
[edit]
[-] dccp.h
[edit]
[-] tipc.h
[edit]
[-] selinux_netlink.h
[edit]
[-] qnxtypes.h
[edit]
[-] socket.h
[edit]
[-] memfd.h
[edit]
[-] seg6_hmac.h
[edit]
[-] ultrasound.h
[edit]
[-] nbd-netlink.h
[edit]
[-] tee.h
[edit]
[-] i8k.h
[edit]
[-] atmarp.h
[edit]
[-] fb.h
[edit]
[-] nl80211.h
[edit]
[-] virtio_ids.h
[edit]
[-] ipx.h
[edit]
[-] icmpv6.h
[edit]
[-] if_phonet.h
[edit]
[-] romfs_fs.h
[edit]
[-] wireless.h
[edit]
[-] netfilter_ipv4.h
[edit]
[-] auto_fs4.h
[edit]
[-] netfilter.h
[edit]
[-] if_arp.h
[edit]
[-] rtc.h
[edit]
[-] ip_vs.h
[edit]
[-] tty.h
[edit]
[-] stm.h
[edit]
[-] fcntl.h
[edit]
[-] mman.h
[edit]
[-] media-bus-format.h
[edit]
[-] futex.h
[edit]
[-] vm_sockets_diag.h
[edit]
[-] virtio_ring.h
[edit]
[-] if_macsec.h
[edit]